@dxos/ui-theme 0.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.
Files changed (97) hide show
  1. package/LICENSE +8 -0
  2. package/README.md +25 -0
  3. package/package.json +80 -0
  4. package/src/Tokens.stories.tsx +88 -0
  5. package/src/config/index.ts +6 -0
  6. package/src/config/tailwind.ts +250 -0
  7. package/src/config/tokens/alias-colors.ts +39 -0
  8. package/src/config/tokens/index.ts +92 -0
  9. package/src/config/tokens/lengths.ts +97 -0
  10. package/src/config/tokens/physical-colors.ts +125 -0
  11. package/src/config/tokens/semantic-colors.ts +27 -0
  12. package/src/config/tokens/sememes-calls.ts +17 -0
  13. package/src/config/tokens/sememes-codemirror.ts +50 -0
  14. package/src/config/tokens/sememes-hue.ts +54 -0
  15. package/src/config/tokens/sememes-sheet.ts +62 -0
  16. package/src/config/tokens/sememes-system.ts +302 -0
  17. package/src/config/tokens/sizes.ts +7 -0
  18. package/src/config/tokens/types.ts +9 -0
  19. package/src/docs/theme.drawio.svg +635 -0
  20. package/src/index.ts +19 -0
  21. package/src/plugins/esbuild-plugin.ts +65 -0
  22. package/src/plugins/plugin.ts +130 -0
  23. package/src/plugins/resolveContent.ts +51 -0
  24. package/src/styles/components/README.md +6 -0
  25. package/src/styles/components/anchored-overflow.ts +20 -0
  26. package/src/styles/components/avatar.ts +96 -0
  27. package/src/styles/components/breadcrumb.ts +29 -0
  28. package/src/styles/components/button.ts +48 -0
  29. package/src/styles/components/dialog.ts +36 -0
  30. package/src/styles/components/icon-button.ts +20 -0
  31. package/src/styles/components/icon.ts +19 -0
  32. package/src/styles/components/index.ts +27 -0
  33. package/src/styles/components/input.ts +177 -0
  34. package/src/styles/components/link.ts +26 -0
  35. package/src/styles/components/list.ts +46 -0
  36. package/src/styles/components/main.ts +36 -0
  37. package/src/styles/components/menu.ts +60 -0
  38. package/src/styles/components/message.ts +36 -0
  39. package/src/styles/components/popover.ts +40 -0
  40. package/src/styles/components/scroll-area.ts +43 -0
  41. package/src/styles/components/select.ts +60 -0
  42. package/src/styles/components/separator.ts +24 -0
  43. package/src/styles/components/status.ts +32 -0
  44. package/src/styles/components/tag.ts +23 -0
  45. package/src/styles/components/toast.ts +55 -0
  46. package/src/styles/components/toolbar.ts +29 -0
  47. package/src/styles/components/tooltip.ts +29 -0
  48. package/src/styles/components/treegrid.ts +37 -0
  49. package/src/styles/fragments/density.ts +17 -0
  50. package/src/styles/fragments/dimension.ts +8 -0
  51. package/src/styles/fragments/disabled.ts +6 -0
  52. package/src/styles/fragments/elevation.ts +29 -0
  53. package/src/styles/fragments/focus.ts +16 -0
  54. package/src/styles/fragments/group.ts +12 -0
  55. package/src/styles/fragments/hover.ts +25 -0
  56. package/src/styles/fragments/index.ts +20 -0
  57. package/src/styles/fragments/layout.ts +7 -0
  58. package/src/styles/fragments/motion.ts +6 -0
  59. package/src/styles/fragments/ornament.ts +10 -0
  60. package/src/styles/fragments/selected.ts +45 -0
  61. package/src/styles/fragments/shimmer.ts +9 -0
  62. package/src/styles/fragments/size.ts +117 -0
  63. package/src/styles/fragments/surface.ts +29 -0
  64. package/src/styles/fragments/text.ts +12 -0
  65. package/src/styles/fragments/valence.ts +46 -0
  66. package/src/styles/index.ts +7 -0
  67. package/src/styles/layers/README.md +15 -0
  68. package/src/styles/layers/anchored-overflow.css +9 -0
  69. package/src/styles/layers/animation.css +17 -0
  70. package/src/styles/layers/attention.css +8 -0
  71. package/src/styles/layers/base.css +25 -0
  72. package/src/styles/layers/button.css +76 -0
  73. package/src/styles/layers/can-scroll.css +26 -0
  74. package/src/styles/layers/checkbox.css +50 -0
  75. package/src/styles/layers/dialog.css +42 -0
  76. package/src/styles/layers/drag-preview.css +18 -0
  77. package/src/styles/layers/focus-ring.css +224 -0
  78. package/src/styles/layers/hues.css +110 -0
  79. package/src/styles/layers/index.css +26 -0
  80. package/src/styles/layers/main.css +160 -0
  81. package/src/styles/layers/native.css +20 -0
  82. package/src/styles/layers/positioning.css +23 -0
  83. package/src/styles/layers/size.css +397 -0
  84. package/src/styles/layers/surfaces.css +31 -0
  85. package/src/styles/layers/tag.css +132 -0
  86. package/src/styles/layers/tldraw.css +91 -0
  87. package/src/styles/layers/tokens.css +45 -0
  88. package/src/styles/layers/typography.css +157 -0
  89. package/src/styles/theme.ts +69 -0
  90. package/src/tailwind.ts +5 -0
  91. package/src/theme.css +9 -0
  92. package/src/types.ts +7 -0
  93. package/src/typings.d.ts +8 -0
  94. package/src/util/hash-styles.ts +168 -0
  95. package/src/util/index.ts +6 -0
  96. package/src/util/mx.ts +51 -0
  97. package/src/util/withLogical.ts +114 -0
@@ -0,0 +1,635 @@
1
+ <svg host="65bd71144e" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="914px" height="1794px" viewBox="-0.5 -0.5 914 1794" content="&lt;mxfile&gt;&lt;diagram id=&quot;xes-K0iwaH3ju0ZghSWJ&quot; name=&quot;Page-1&quot;&gt;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&lt;/diagram&gt;&lt;/mxfile&gt;">
2
+ <defs/>
3
+ <g>
4
+ <rect x="88" y="1080" width="144" height="128" fill="#e1e4e6" stroke="#c0c3c5" pointer-events="all"/>
5
+ <rect x="188" y="1084" width="40" height="120" fill="#c0c3c5" stroke="#9b9ea2" pointer-events="all"/>
6
+ <rect x="140" y="1084" width="40" height="120" fill="#c0c3c5" stroke="#9b9ea2" pointer-events="all"/>
7
+ <rect x="92" y="1084" width="40" height="120" fill="#c0c3c5" stroke="#9b9ea2" pointer-events="all"/>
8
+ <rect x="160" y="80" width="128" height="64" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
9
+ <g transform="translate(-0.5 -0.5)">
10
+ <switch>
11
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
12
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe center; width: 126px; height: 1px; padding-top: 87px; margin-left: 161px;">
13
+ <div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
14
+ <div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
15
+ 32px
16
+ <br/>
17
+ (2rem)
18
+ </div>
19
+ </div>
20
+ </div>
21
+ </foreignObject>
22
+ <text x="224" y="99" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
23
+ 32px...
24
+ </text>
25
+ </switch>
26
+ </g>
27
+ <rect x="32" y="80" width="128" height="80" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
28
+ <g transform="translate(-0.5 -0.5)">
29
+ <switch>
30
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
31
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe center; width: 126px; height: 1px; padding-top: 87px; margin-left: 33px;">
32
+ <div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
33
+ <div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
34
+ 40px
35
+ <br/>
36
+ (2.5rem)
37
+ </div>
38
+ </div>
39
+ </div>
40
+ </foreignObject>
41
+ <text x="96" y="99" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
42
+ 40px...
43
+ </text>
44
+ </switch>
45
+ </g>
46
+ <rect x="32" y="448" width="64" height="64" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
47
+ <rect x="96" y="448" width="256" height="64" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
48
+ <rect x="352" y="448" width="64" height="64" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
49
+ <rect x="364.5" y="460" width="40" height="40" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
50
+ <rect x="32" y="64" width="120" height="16" fill="none" stroke="none" pointer-events="all"/>
51
+ <g transform="translate(-0.5 -0.5)">
52
+ <switch>
53
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
54
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 118px; height: 1px; padding-top: 72px; margin-left: 34px;">
55
+ <div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left;">
56
+ <div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
57
+ Coarse
58
+ </div>
59
+ </div>
60
+ </div>
61
+ </foreignObject>
62
+ <text x="34" y="76" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px">
63
+ Coarse
64
+ </text>
65
+ </switch>
66
+ </g>
67
+ <rect x="32" y="432" width="120" height="16" fill="none" stroke="none" pointer-events="all"/>
68
+ <g transform="translate(-0.5 -0.5)">
69
+ <switch>
70
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
71
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 118px; height: 1px; padding-top: 440px; margin-left: 34px;">
72
+ <div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left;">
73
+ <div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
74
+ Card
75
+ </div>
76
+ </div>
77
+ </div>
78
+ </foreignObject>
79
+ <text x="34" y="444" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px">
80
+ Card
81
+ </text>
82
+ </switch>
83
+ </g>
84
+ <rect x="160" y="64" width="120" height="16" fill="none" stroke="none" pointer-events="all"/>
85
+ <g transform="translate(-0.5 -0.5)">
86
+ <switch>
87
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
88
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 118px; height: 1px; padding-top: 72px; margin-left: 162px;">
89
+ <div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left;">
90
+ <div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
91
+ Fine
92
+ </div>
93
+ </div>
94
+ </div>
95
+ </foreignObject>
96
+ <text x="162" y="76" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px">
97
+ Fine
98
+ </text>
99
+ </switch>
100
+ </g>
101
+ <rect x="96" y="512" width="320" height="384" fill="none" stroke="rgb(0, 0, 0)" pointer-events="all"/>
102
+ <rect x="44.5" y="716" width="40" height="40" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
103
+ <rect x="105.5" y="712" width="303" height="48" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
104
+ <g transform="translate(-0.5 -0.5)">
105
+ <switch>
106
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
107
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 299px; height: 1px; padding-top: 736px; margin-left: 110px;">
108
+ <div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left;">
109
+ <div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
110
+ 24px
111
+ </div>
112
+ </div>
113
+ </div>
114
+ </foreignObject>
115
+ <text x="110" y="740" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px">
116
+ 24px
117
+ </text>
118
+ </switch>
119
+ </g>
120
+ <path d="M 448 576 L 0 576" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" stroke-dasharray="1 2" pointer-events="stroke"/>
121
+ <rect x="105" y="456" width="239" height="48" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
122
+ <g transform="translate(-0.5 -0.5)">
123
+ <switch>
124
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
125
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 235px; height: 1px; padding-top: 480px; margin-left: 109px;">
126
+ <div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left;">
127
+ <div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
128
+ 24px
129
+ </div>
130
+ </div>
131
+ </div>
132
+ </foreignObject>
133
+ <text x="109" y="484" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px">
134
+ 24px
135
+ </text>
136
+ </switch>
137
+ </g>
138
+ <rect x="44" y="460" width="40" height="40" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
139
+ <rect x="32.5" y="320" width="64" height="64" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
140
+ <rect x="96.5" y="320" width="256" height="64" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
141
+ <rect x="352.5" y="320" width="64" height="64" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
142
+ <rect x="364.5" y="332" width="40" height="40" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
143
+ <rect x="32.5" y="304" width="120" height="16" fill="none" stroke="none" pointer-events="all"/>
144
+ <g transform="translate(-0.5 -0.5)">
145
+ <switch>
146
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
147
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 118px; height: 1px; padding-top: 312px; margin-left: 35px;">
148
+ <div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left;">
149
+ <div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
150
+ Toolbar
151
+ </div>
152
+ </div>
153
+ </div>
154
+ </foreignObject>
155
+ <text x="35" y="316" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px">
156
+ Toolbar
157
+ </text>
158
+ </switch>
159
+ </g>
160
+ <rect x="105.5" y="328" width="239" height="48" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
161
+ <g transform="translate(-0.5 -0.5)">
162
+ <switch>
163
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
164
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 235px; height: 1px; padding-top: 352px; margin-left: 110px;">
165
+ <div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left;">
166
+ <div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
167
+ 24px
168
+ </div>
169
+ </div>
170
+ </div>
171
+ </foreignObject>
172
+ <text x="110" y="356" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px">
173
+ 24px
174
+ </text>
175
+ </switch>
176
+ </g>
177
+ <rect x="44.5" y="332" width="40" height="40" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
178
+ <g transform="translate(-0.5 -0.5)">
179
+ <switch>
180
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
181
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 38px; height: 1px; padding-top: 352px; margin-left: 46px;">
182
+ <div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
183
+ <div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
184
+ 20px
185
+ </div>
186
+ </div>
187
+ </div>
188
+ </foreignObject>
189
+ <text x="65" y="356" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
190
+ 20px
191
+ </text>
192
+ </switch>
193
+ </g>
194
+ <path d="M 448 512 L 0 512" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" stroke-dasharray="1 2" pointer-events="stroke"/>
195
+ <rect x="32" y="512" width="64" height="384" fill="none" stroke="rgb(0, 0, 0)" pointer-events="all"/>
196
+ <path d="M 448.5 761.63 L 448.5 710.37" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
197
+ <path d="M 448.5 766.88 L 445 759.88 L 448.5 761.63 L 452 759.88 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/>
198
+ <path d="M 448.5 705.12 L 452 712.12 L 448.5 710.37 L 445 712.12 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/>
199
+ <rect x="456.5" y="728" width="56" height="16" fill="none" stroke="none" pointer-events="all"/>
200
+ <g transform="translate(-0.5 -0.5)">
201
+ <switch>
202
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
203
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 54px; height: 1px; padding-top: 736px; margin-left: 459px;">
204
+ <div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left;">
205
+ <div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
206
+ 32px
207
+ </div>
208
+ </div>
209
+ </div>
210
+ </foreignObject>
211
+ <text x="459" y="740" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px">
212
+ 32px
213
+ </text>
214
+ </switch>
215
+ </g>
216
+ <rect x="106" y="776" width="303" height="48" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
217
+ <g transform="translate(-0.5 -0.5)">
218
+ <switch>
219
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
220
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 299px; height: 1px; padding-top: 800px; margin-left: 110px;">
221
+ <div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left;">
222
+ <div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
223
+ 24px
224
+ </div>
225
+ </div>
226
+ </div>
227
+ </foreignObject>
228
+ <text x="110" y="804" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px">
229
+ 24px
230
+ </text>
231
+ </switch>
232
+ </g>
233
+ <path d="M 448 640 L 0 640" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" stroke-dasharray="1 2" pointer-events="stroke"/>
234
+ <rect x="96.5" y="1280" width="303" height="64" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
235
+ <g transform="translate(-0.5 -0.5)">
236
+ <switch>
237
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
238
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 301px; height: 1px; padding-top: 1312px; margin-left: 98px;">
239
+ <div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
240
+ <div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
241
+ 32px
242
+ </div>
243
+ </div>
244
+ </div>
245
+ </foreignObject>
246
+ <text x="248" y="1316" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
247
+ 32px
248
+ </text>
249
+ </switch>
250
+ </g>
251
+ <rect x="96.5" y="1248" width="303" height="32" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
252
+ <g transform="translate(-0.5 -0.5)">
253
+ <switch>
254
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
255
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 301px; height: 1px; padding-top: 1264px; margin-left: 98px;">
256
+ <div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
257
+ <div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
258
+ 16px
259
+ </div>
260
+ </div>
261
+ </div>
262
+ </foreignObject>
263
+ <text x="248" y="1268" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
264
+ 16px
265
+ </text>
266
+ </switch>
267
+ </g>
268
+ <rect x="96" y="1232" width="120" height="16" fill="none" stroke="none" pointer-events="all"/>
269
+ <g transform="translate(-0.5 -0.5)">
270
+ <switch>
271
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
272
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 118px; height: 1px; padding-top: 1240px; margin-left: 98px;">
273
+ <div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left;">
274
+ <div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
275
+ Form
276
+ </div>
277
+ </div>
278
+ </div>
279
+ </foreignObject>
280
+ <text x="98" y="1244" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px">
281
+ Form
282
+ </text>
283
+ </switch>
284
+ </g>
285
+ <rect x="96.5" y="1256" width="120" height="16" fill="none" stroke="none" pointer-events="all"/>
286
+ <g transform="translate(-0.5 -0.5)">
287
+ <switch>
288
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
289
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 116px; height: 1px; padding-top: 1264px; margin-left: 101px;">
290
+ <div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left;">
291
+ <div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
292
+ Label
293
+ </div>
294
+ </div>
295
+ </div>
296
+ </foreignObject>
297
+ <text x="101" y="1268" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px">
298
+ Label
299
+ </text>
300
+ </switch>
301
+ </g>
302
+ <rect x="96.5" y="1304" width="120" height="16" fill="none" stroke="none" pointer-events="all"/>
303
+ <g transform="translate(-0.5 -0.5)">
304
+ <switch>
305
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
306
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 116px; height: 1px; padding-top: 1312px; margin-left: 101px;">
307
+ <div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left;">
308
+ <div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
309
+ Input
310
+ </div>
311
+ </div>
312
+ </div>
313
+ </foreignObject>
314
+ <text x="101" y="1316" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px">
315
+ Input
316
+ </text>
317
+ </switch>
318
+ </g>
319
+ <rect x="608" y="80" width="304" height="304" rx="15.2" ry="15.2" fill="none" stroke="rgb(0, 0, 0)" pointer-events="all"/>
320
+ <rect x="632" y="104" width="256" height="256" fill="none" stroke="rgb(0, 0, 0)" pointer-events="all"/>
321
+ <rect x="80" y="8" width="128" height="16" fill="none" stroke="none" pointer-events="all"/>
322
+ <g transform="translate(-0.5 -0.5)">
323
+ <switch>
324
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
325
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 126px; height: 1px; padding-top: 16px; margin-left: 82px;">
326
+ <div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left;">
327
+ <div style="display: inline-block; font-size: 12px; font-family: &quot;Space Grotesk&quot;; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
328
+ p-1 = 0.25rem = 4px
329
+ </div>
330
+ </div>
331
+ </div>
332
+ </foreignObject>
333
+ <text x="82" y="20" fill="rgb(0, 0, 0)" font-family="Space Grotesk" font-size="12px">
334
+ p-1 = 0.25rem = 4px
335
+ </text>
336
+ </switch>
337
+ </g>
338
+ <rect x="32.5" y="0" width="32" height="32" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
339
+ <g transform="translate(-0.5 -0.5)">
340
+ <switch>
341
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
342
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 30px; height: 1px; padding-top: 16px; margin-left: 34px;">
343
+ <div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
344
+ <div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
345
+ p-4
346
+ </div>
347
+ </div>
348
+ </div>
349
+ </foreignObject>
350
+ <text x="49" y="20" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
351
+ p-4
352
+ </text>
353
+ </switch>
354
+ </g>
355
+ <rect x="892" y="104" width="16" height="256" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
356
+ <rect x="892" y="104" width="16" height="88" fill="#393c3e" stroke="#1e1f20" pointer-events="all"/>
357
+ <rect x="128" y="208" width="96" height="48" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
358
+ <g transform="translate(-0.5 -0.5)">
359
+ <switch>
360
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
361
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe center; width: 94px; height: 1px; padding-top: 215px; margin-left: 129px;">
362
+ <div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
363
+ <div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
364
+ 24px (text-md)
365
+ </div>
366
+ </div>
367
+ </div>
368
+ </foreignObject>
369
+ <text x="176" y="227" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
370
+ 24px (text-md)
371
+ </text>
372
+ </switch>
373
+ </g>
374
+ <rect x="32" y="200" width="96" height="56" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
375
+ <g transform="translate(-0.5 -0.5)">
376
+ <switch>
377
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
378
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe center; width: 94px; height: 1px; padding-top: 207px; margin-left: 33px;">
379
+ <div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
380
+ <div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
381
+ 28px (text-lg)
382
+ </div>
383
+ </div>
384
+ </div>
385
+ </foreignObject>
386
+ <text x="80" y="219" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
387
+ 28px (text-lg)
388
+ </text>
389
+ </switch>
390
+ </g>
391
+ <rect x="224" y="216" width="96" height="40" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
392
+ <g transform="translate(-0.5 -0.5)">
393
+ <switch>
394
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
395
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe center; width: 94px; height: 1px; padding-top: 223px; margin-left: 225px;">
396
+ <div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
397
+ <div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
398
+ 20px (text-sm)
399
+ </div>
400
+ </div>
401
+ </div>
402
+ </foreignObject>
403
+ <text x="272" y="235" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
404
+ 20px (text-sm)
405
+ </text>
406
+ </switch>
407
+ </g>
408
+ <rect x="320" y="224" width="96" height="32" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
409
+ <g transform="translate(-0.5 -0.5)">
410
+ <switch>
411
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
412
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe center; width: 94px; height: 1px; padding-top: 231px; margin-left: 321px;">
413
+ <div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
414
+ <div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
415
+ 16px (text-xs)
416
+ </div>
417
+ </div>
418
+ </div>
419
+ </foreignObject>
420
+ <text x="368" y="243" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
421
+ 16px (text-xs)
422
+ </text>
423
+ </switch>
424
+ </g>
425
+ <rect x="888" y="80" width="24" height="24" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
426
+ <g transform="translate(-0.5 -0.5)">
427
+ <switch>
428
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
429
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 22px; height: 1px; padding-top: 92px; margin-left: 889px;">
430
+ <div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
431
+ <div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
432
+ p-3
433
+ </div>
434
+ </div>
435
+ </div>
436
+ </foreignObject>
437
+ <text x="900" y="96" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
438
+ p-3
439
+ </text>
440
+ </switch>
441
+ </g>
442
+ <rect x="96" y="1088" width="32" height="32" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
443
+ <rect x="96" y="1128" width="32" height="32" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
444
+ <rect x="96" y="1168" width="32" height="32" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
445
+ <rect x="144" y="1088" width="32" height="32" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
446
+ <rect x="144" y="1128" width="32" height="32" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
447
+ <rect x="144" y="1168" width="32" height="32" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
448
+ <rect x="192" y="1088" width="32" height="32" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
449
+ <rect x="96" y="1056" width="120" height="16" fill="none" stroke="none" pointer-events="all"/>
450
+ <g transform="translate(-0.5 -0.5)">
451
+ <switch>
452
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
453
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 118px; height: 1px; padding-top: 1064px; margin-left: 98px;">
454
+ <div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left;">
455
+ <div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
456
+ Stack
457
+ </div>
458
+ </div>
459
+ </div>
460
+ </foreignObject>
461
+ <text x="98" y="1068" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px">
462
+ Stack
463
+ </text>
464
+ </switch>
465
+ </g>
466
+ <path d="M 448 704 L 0 704" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" stroke-dasharray="1 2" pointer-events="stroke"/>
467
+ <path d="M 448 768 L 0 768" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" stroke-dasharray="1 2" pointer-events="stroke"/>
468
+ <path d="M 448 832 L 0 832" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" stroke-dasharray="1 2" pointer-events="stroke"/>
469
+ <rect x="32" y="512" width="384" height="192" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
470
+ <path d="M 372 351.86 L 396 351.95" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/>
471
+ <path d="M 372 339.95 L 396 340.04" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/>
472
+ <path d="M 372 363.95 L 396 364.04" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/>
473
+ <rect x="96.5" y="1680" width="303" height="32" fill="#e1e4e6" stroke="#c0c3c5" pointer-events="none"/>
474
+ <g transform="translate(-0.5 -0.5)">
475
+ <switch>
476
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
477
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 299px; height: 1px; padding-top: 1696px; margin-left: 101px;">
478
+ <div data-drawio-colors="color: #000000; " style="box-sizing: border-box; font-size: 0px; text-align: left;">
479
+ <div style="display: inline-block; font-size: 10px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">
480
+ gap (3)
481
+ </div>
482
+ </div>
483
+ </div>
484
+ </foreignObject>
485
+ <text x="101" y="1699" fill="#000000" font-family="Helvetica" font-size="10px">
486
+ gap (3)
487
+ </text>
488
+ </switch>
489
+ </g>
490
+ <rect x="96.5" y="1600" width="303" height="32" fill="#e1e4e6" stroke="#c0c3c5" pointer-events="none"/>
491
+ <g transform="translate(-0.5 -0.5)">
492
+ <switch>
493
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
494
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 299px; height: 1px; padding-top: 1616px; margin-left: 101px;">
495
+ <div data-drawio-colors="color: #000000; " style="box-sizing: border-box; font-size: 0px; text-align: left;">
496
+ <div style="display: inline-block; font-size: 10px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">
497
+ gap (2)
498
+ </div>
499
+ </div>
500
+ </div>
501
+ </foreignObject>
502
+ <text x="101" y="1619" fill="#000000" font-family="Helvetica" font-size="10px">
503
+ gap (2)
504
+ </text>
505
+ </switch>
506
+ </g>
507
+ <rect x="96.5" y="1520" width="303" height="32" fill="#e1e4e6" stroke="#c0c3c5" pointer-events="none"/>
508
+ <g transform="translate(-0.5 -0.5)">
509
+ <switch>
510
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
511
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 299px; height: 1px; padding-top: 1536px; margin-left: 101px;">
512
+ <div data-drawio-colors="color: #000000; " style="box-sizing: border-box; font-size: 0px; text-align: left;">
513
+ <div style="display: inline-block; font-size: 10px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">
514
+ gap (1)
515
+ </div>
516
+ </div>
517
+ </div>
518
+ </foreignObject>
519
+ <text x="101" y="1539" fill="#000000" font-family="Helvetica" font-size="10px">
520
+ gap (1)
521
+ </text>
522
+ </switch>
523
+ </g>
524
+ <rect x="96.5" y="1440" width="303" height="32" fill="#e1e4e6" stroke="#c0c3c5" pointer-events="none"/>
525
+ <g transform="translate(-0.5 -0.5)">
526
+ <switch>
527
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
528
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 299px; height: 1px; padding-top: 1456px; margin-left: 101px;">
529
+ <div data-drawio-colors="color: #000000; " style="box-sizing: border-box; font-size: 0px; text-align: left;">
530
+ <div style="display: inline-block; font-size: 10px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">
531
+ gap (0)
532
+ </div>
533
+ </div>
534
+ </div>
535
+ </foreignObject>
536
+ <text x="101" y="1459" fill="#000000" font-family="Helvetica" font-size="10px">
537
+ gap (0)
538
+ </text>
539
+ </switch>
540
+ </g>
541
+ <rect x="96.5" y="1760" width="303" height="32" fill="#e1e4e6" stroke="#c0c3c5" pointer-events="none"/>
542
+ <g transform="translate(-0.5 -0.5)">
543
+ <switch>
544
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
545
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 299px; height: 1px; padding-top: 1776px; margin-left: 101px;">
546
+ <div data-drawio-colors="color: #000000; " style="box-sizing: border-box; font-size: 0px; text-align: left;">
547
+ <div style="display: inline-block; font-size: 10px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">
548
+ gap (4)
549
+ </div>
550
+ </div>
551
+ </div>
552
+ </foreignObject>
553
+ <text x="101" y="1779" fill="#000000" font-family="Helvetica" font-size="10px">
554
+ gap (4)
555
+ </text>
556
+ </switch>
557
+ </g>
558
+ <rect x="96.5" y="1472" width="303" height="48" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="none"/>
559
+ <g transform="translate(-0.5 -0.5)">
560
+ <switch>
561
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
562
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 299px; height: 1px; padding-top: 1496px; margin-left: 101px;">
563
+ <div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left;">
564
+ <div style="display: inline-block; font-size: 10px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">
565
+ cell (0)
566
+ </div>
567
+ </div>
568
+ </div>
569
+ </foreignObject>
570
+ <text x="101" y="1499" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="10px">
571
+ cell (0)
572
+ </text>
573
+ </switch>
574
+ </g>
575
+ <rect x="96.5" y="1552" width="303" height="48" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="none"/>
576
+ <g transform="translate(-0.5 -0.5)">
577
+ <switch>
578
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
579
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 299px; height: 1px; padding-top: 1576px; margin-left: 101px;">
580
+ <div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left;">
581
+ <div style="display: inline-block; font-size: 10px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">
582
+ cell (1)
583
+ </div>
584
+ </div>
585
+ </div>
586
+ </foreignObject>
587
+ <text x="101" y="1579" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="10px">
588
+ cell (1)
589
+ </text>
590
+ </switch>
591
+ </g>
592
+ <rect x="96.5" y="1632" width="303" height="48" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="none"/>
593
+ <g transform="translate(-0.5 -0.5)">
594
+ <switch>
595
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
596
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 299px; height: 1px; padding-top: 1656px; margin-left: 101px;">
597
+ <div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left;">
598
+ <div style="display: inline-block; font-size: 10px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">
599
+ cell (2)
600
+ </div>
601
+ </div>
602
+ </div>
603
+ </foreignObject>
604
+ <text x="101" y="1659" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="10px">
605
+ cell (2)
606
+ </text>
607
+ </switch>
608
+ </g>
609
+ <rect x="96.5" y="1712" width="303" height="48" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="none"/>
610
+ <g transform="translate(-0.5 -0.5)">
611
+ <switch>
612
+ <foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
613
+ <div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 299px; height: 1px; padding-top: 1736px; margin-left: 101px;">
614
+ <div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left;">
615
+ <div style="display: inline-block; font-size: 10px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">
616
+ cell (3)
617
+ </div>
618
+ </div>
619
+ </div>
620
+ </foreignObject>
621
+ <text x="101" y="1739" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="10px">
622
+ cell (3)
623
+ </text>
624
+ </switch>
625
+ </g>
626
+ </g>
627
+ <switch>
628
+ <g requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"/>
629
+ <a transform="translate(0,-5)" xlink:href="https://www.diagrams.net/doc/faq/svg-export-text-problems" target="_blank">
630
+ <text text-anchor="middle" font-size="10px" x="50%" y="100%">
631
+ Text is not SVG - cannot display
632
+ </text>
633
+ </a>
634
+ </switch>
635
+ </svg>