@wordpress/boot 0.1.1-next.2f1c7c01b.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 (130) hide show
  1. package/LICENSE.md +788 -0
  2. package/build-module/components/app/index.js +32 -0
  3. package/build-module/components/app/index.js.map +7 -0
  4. package/build-module/components/app/router.js +119 -0
  5. package/build-module/components/app/router.js.map +7 -0
  6. package/build-module/components/navigation/drilldown-item/index.js +49 -0
  7. package/build-module/components/navigation/drilldown-item/index.js.map +7 -0
  8. package/build-module/components/navigation/dropdown-item/index.js +162 -0
  9. package/build-module/components/navigation/dropdown-item/index.js.map +7 -0
  10. package/build-module/components/navigation/index.js +101 -0
  11. package/build-module/components/navigation/index.js.map +7 -0
  12. package/build-module/components/navigation/items.js +60 -0
  13. package/build-module/components/navigation/items.js.map +7 -0
  14. package/build-module/components/navigation/navigation-item/index.js +180 -0
  15. package/build-module/components/navigation/navigation-item/index.js.map +7 -0
  16. package/build-module/components/navigation/navigation-screen/index.js +196 -0
  17. package/build-module/components/navigation/navigation-screen/index.js.map +7 -0
  18. package/build-module/components/navigation/path-matching.js +78 -0
  19. package/build-module/components/navigation/path-matching.js.map +7 -0
  20. package/build-module/components/navigation/router-link-item.js +14 -0
  21. package/build-module/components/navigation/router-link-item.js.map +7 -0
  22. package/build-module/components/navigation/use-sidebar-parent.js +52 -0
  23. package/build-module/components/navigation/use-sidebar-parent.js.map +7 -0
  24. package/build-module/components/root/index.js +115 -0
  25. package/build-module/components/root/index.js.map +7 -0
  26. package/build-module/components/sidebar/index.js +78 -0
  27. package/build-module/components/sidebar/index.js.map +7 -0
  28. package/build-module/components/site-hub/index.js +153 -0
  29. package/build-module/components/site-hub/index.js.map +7 -0
  30. package/build-module/components/site-icon/index.js +115 -0
  31. package/build-module/components/site-icon/index.js.map +7 -0
  32. package/build-module/components/site-icon-link/index.js +101 -0
  33. package/build-module/components/site-icon-link/index.js.map +7 -0
  34. package/build-module/index.js +622 -0
  35. package/build-module/index.js.map +7 -0
  36. package/build-module/lock-unlock.js +11 -0
  37. package/build-module/lock-unlock.js.map +7 -0
  38. package/build-module/store/actions.js +19 -0
  39. package/build-module/store/actions.js.map +7 -0
  40. package/build-module/store/index.js +17 -0
  41. package/build-module/store/index.js.map +7 -0
  42. package/build-module/store/reducer.js +27 -0
  43. package/build-module/store/reducer.js.map +7 -0
  44. package/build-module/store/selectors.js +12 -0
  45. package/build-module/store/selectors.js.map +7 -0
  46. package/build-module/store/types.js +1 -0
  47. package/build-module/store/types.js.map +7 -0
  48. package/build-style/style-rtl.css +612 -0
  49. package/build-style/style.css +612 -0
  50. package/build-types/components/app/index.d.ts +6 -0
  51. package/build-types/components/app/index.d.ts.map +1 -0
  52. package/build-types/components/app/router.d.ts +7 -0
  53. package/build-types/components/app/router.d.ts.map +1 -0
  54. package/build-types/components/navigation/drilldown-item/index.d.ts +34 -0
  55. package/build-types/components/navigation/drilldown-item/index.d.ts.map +1 -0
  56. package/build-types/components/navigation/dropdown-item/index.d.ts +36 -0
  57. package/build-types/components/navigation/dropdown-item/index.d.ts.map +1 -0
  58. package/build-types/components/navigation/index.d.ts +3 -0
  59. package/build-types/components/navigation/index.d.ts.map +1 -0
  60. package/build-types/components/navigation/items.d.ts +16 -0
  61. package/build-types/components/navigation/items.d.ts.map +1 -0
  62. package/build-types/components/navigation/navigation-item/index.d.ts +28 -0
  63. package/build-types/components/navigation/navigation-item/index.d.ts.map +1 -0
  64. package/build-types/components/navigation/navigation-screen/index.d.ts +24 -0
  65. package/build-types/components/navigation/navigation-screen/index.d.ts.map +1 -0
  66. package/build-types/components/navigation/path-matching.d.ts +30 -0
  67. package/build-types/components/navigation/path-matching.d.ts.map +1 -0
  68. package/build-types/components/navigation/router-link-item.d.ts +5 -0
  69. package/build-types/components/navigation/router-link-item.d.ts.map +1 -0
  70. package/build-types/components/navigation/use-sidebar-parent.d.ts +12 -0
  71. package/build-types/components/navigation/use-sidebar-parent.d.ts.map +1 -0
  72. package/build-types/components/root/index.d.ts +3 -0
  73. package/build-types/components/root/index.d.ts.map +1 -0
  74. package/build-types/components/sidebar/index.d.ts +3 -0
  75. package/build-types/components/sidebar/index.d.ts.map +1 -0
  76. package/build-types/components/site-hub/index.d.ts +4 -0
  77. package/build-types/components/site-hub/index.d.ts.map +1 -0
  78. package/build-types/components/site-icon/index.d.ts +9 -0
  79. package/build-types/components/site-icon/index.d.ts.map +1 -0
  80. package/build-types/components/site-icon-link/index.d.ts +8 -0
  81. package/build-types/components/site-icon-link/index.d.ts.map +1 -0
  82. package/build-types/index.d.ts +6 -0
  83. package/build-types/index.d.ts.map +1 -0
  84. package/build-types/lock-unlock.d.ts +2 -0
  85. package/build-types/lock-unlock.d.ts.map +1 -0
  86. package/build-types/store/actions.d.ts +15 -0
  87. package/build-types/store/actions.d.ts.map +1 -0
  88. package/build-types/store/index.d.ts +6 -0
  89. package/build-types/store/index.d.ts.map +1 -0
  90. package/build-types/store/reducer.d.ts +7 -0
  91. package/build-types/store/reducer.d.ts.map +1 -0
  92. package/build-types/store/selectors.d.ts +7 -0
  93. package/build-types/store/selectors.d.ts.map +1 -0
  94. package/build-types/store/types.d.ts +63 -0
  95. package/build-types/store/types.d.ts.map +1 -0
  96. package/package.json +64 -0
  97. package/src/components/app/index.tsx +45 -0
  98. package/src/components/app/router.tsx +198 -0
  99. package/src/components/navigation/drilldown-item/index.tsx +88 -0
  100. package/src/components/navigation/dropdown-item/index.tsx +134 -0
  101. package/src/components/navigation/dropdown-item/style.scss +23 -0
  102. package/src/components/navigation/index.tsx +126 -0
  103. package/src/components/navigation/items.tsx +93 -0
  104. package/src/components/navigation/navigation-item/index.tsx +88 -0
  105. package/src/components/navigation/navigation-item/style.scss +52 -0
  106. package/src/components/navigation/navigation-screen/index.tsx +147 -0
  107. package/src/components/navigation/navigation-screen/style.scss +34 -0
  108. package/src/components/navigation/path-matching.ts +149 -0
  109. package/src/components/navigation/router-link-item.tsx +22 -0
  110. package/src/components/navigation/use-sidebar-parent.ts +77 -0
  111. package/src/components/root/index.tsx +42 -0
  112. package/src/components/root/style.scss +41 -0
  113. package/src/components/sidebar/index.tsx +17 -0
  114. package/src/components/sidebar/style.scss +15 -0
  115. package/src/components/site-hub/index.tsx +67 -0
  116. package/src/components/site-hub/style.scss +54 -0
  117. package/src/components/site-icon/index.tsx +60 -0
  118. package/src/components/site-icon/style.scss +19 -0
  119. package/src/components/site-icon-link/index.tsx +43 -0
  120. package/src/components/site-icon-link/style.scss +24 -0
  121. package/src/index.tsx +5 -0
  122. package/src/lock-unlock.ts +9 -0
  123. package/src/store/actions.ts +23 -0
  124. package/src/store/index.ts +23 -0
  125. package/src/store/reducer.ts +31 -0
  126. package/src/store/selectors.ts +12 -0
  127. package/src/store/types.ts +70 -0
  128. package/src/style.scss +2 -0
  129. package/tsconfig.json +23 -0
  130. package/tsconfig.tsbuildinfo +1 -0
@@ -0,0 +1,612 @@
1
+ @charset "UTF-8";
2
+ /* -------------------------------------------
3
+ * Autogenerated by ⛋ Terrazzo. DO NOT EDIT!
4
+ * ------------------------------------------- */
5
+ :root {
6
+ --wpds-border-radius-large: 8px; /* Large radius */
7
+ --wpds-border-radius-medium: 4px; /* Medium radius */
8
+ --wpds-border-radius-small: 2px; /* Small radius */
9
+ --wpds-border-radius-x-small: 1px; /* Extra small radius */
10
+ --wpds-border-width-focus: 2px; /* Border width for focus ring */
11
+ --wpds-color-bg-interactive-brand: #00000000; /* Background color for interactive elements with brand tone and normal emphasis. */
12
+ --wpds-color-bg-interactive-brand-active: var(
13
+ --wpds-color-private-primary-surface2
14
+ ); /* Background color for interactive elements with brand tone and normal emphasis that are hovered, focused, or active. */
15
+ --wpds-color-bg-interactive-brand-disabled: var(
16
+ --wpds-color-private-bg-surface5
17
+ ); /* Background color for interactive elements with brand tone and normal emphasis, in their disabled state. */
18
+ --wpds-color-bg-interactive-brand-strong: var(
19
+ --wpds-color-private-primary-bg-fill1
20
+ ); /* Background color for interactive elements with brand tone and strong emphasis. */
21
+ --wpds-color-bg-interactive-brand-strong-active: var(
22
+ --wpds-color-private-primary-bg-fill2
23
+ ); /* Background color for interactive elements with brand tone and strong emphasis that are hovered, focused, or active. */
24
+ --wpds-color-bg-interactive-brand-strong-disabled: var(
25
+ --wpds-color-private-bg-surface6
26
+ ); /* Background color for interactive elements with brand tone and strong emphasis, in their disabled state. */
27
+ --wpds-color-bg-interactive-brand-weak: #00000000; /* Background color for interactive elements with brand tone and weak emphasis. */
28
+ --wpds-color-bg-interactive-brand-weak-active: var(
29
+ --wpds-color-private-primary-surface4
30
+ ); /* Background color for interactive elements with brand tone and weak emphasis that are hovered, focused, or active. */
31
+ --wpds-color-bg-interactive-brand-weak-disabled: var(
32
+ --wpds-color-private-bg-surface5
33
+ ); /* Background color for interactive elements with brand tone and weak emphasis, in their disabled state. */
34
+ --wpds-color-bg-interactive-neutral: #00000000; /* Background color for interactive elements with neutral tone and normal emphasis. */
35
+ --wpds-color-bg-interactive-neutral-active: var(
36
+ --wpds-color-private-bg-surface4
37
+ ); /* Background color for interactive elements with neutral tone and normal emphasis that are hovered, focused, or active. */
38
+ --wpds-color-bg-interactive-neutral-disabled: var(
39
+ --wpds-color-private-bg-surface5
40
+ ); /* Background color for interactive elements with neutral tone and normal emphasis, in their disabled state. */
41
+ --wpds-color-bg-interactive-neutral-strong: var(
42
+ --wpds-color-private-bg-bg-fill-inverted1
43
+ ); /* Background color for interactive elements with neutral tone and strong emphasis. */
44
+ --wpds-color-bg-interactive-neutral-strong-active: var(
45
+ --wpds-color-private-bg-bg-fill-inverted2
46
+ ); /* Background color for interactive elements with neutral tone and strong emphasis that are hovered, focused, or active. */
47
+ --wpds-color-bg-interactive-neutral-strong-disabled: var(
48
+ --wpds-color-private-bg-surface6
49
+ ); /* Background color for interactive elements with neutral tone and strong emphasis, in their disabled state. */
50
+ --wpds-color-bg-interactive-neutral-weak: #00000000; /* Background color for interactive elements with neutral tone and weak emphasis. */
51
+ --wpds-color-bg-interactive-neutral-weak-active: var(
52
+ --wpds-color-private-bg-surface4
53
+ ); /* Background color for interactive elements with neutral tone and weak emphasis that are hovered, focused, or active. */
54
+ --wpds-color-bg-interactive-neutral-weak-disabled: var(
55
+ --wpds-color-private-bg-surface5
56
+ ); /* Background color for interactive elements with neutral tone and weak emphasis, in their disabled state. */
57
+ --wpds-color-bg-surface-brand: var(
58
+ --wpds-color-private-primary-surface1
59
+ ); /* Background color for surfaces with brand tone and normal emphasis. */
60
+ --wpds-color-bg-surface-caution: var(
61
+ --wpds-color-private-caution-surface4
62
+ ); /* Background color for surfaces with caution tone and normal emphasis. */
63
+ --wpds-color-bg-surface-caution-weak: var(
64
+ --wpds-color-private-caution-surface2
65
+ ); /* Background color for surfaces with caution tone and weak emphasis. */
66
+ --wpds-color-bg-surface-error: var(
67
+ --wpds-color-private-error-surface4
68
+ ); /* Background color for surfaces with error tone and normal emphasis. */
69
+ --wpds-color-bg-surface-error-weak: var(
70
+ --wpds-color-private-error-surface2
71
+ ); /* Background color for surfaces with error tone and weak emphasis. */
72
+ --wpds-color-bg-surface-info: var(
73
+ --wpds-color-private-info-surface4
74
+ ); /* Background color for surfaces with info tone and normal emphasis. */
75
+ --wpds-color-bg-surface-info-weak: var(
76
+ --wpds-color-private-info-surface2
77
+ ); /* Background color for surfaces with info tone and weak emphasis. */
78
+ --wpds-color-bg-surface-neutral: var(
79
+ --wpds-color-private-bg-surface2
80
+ ); /* Background color for surfaces with normal emphasis. */
81
+ --wpds-color-bg-surface-neutral-strong: var(
82
+ --wpds-color-private-bg-surface3
83
+ ); /* Background color for surfaces with strong emphasis. */
84
+ --wpds-color-bg-surface-neutral-weak: var(
85
+ --wpds-color-private-bg-surface1
86
+ ); /* Background color for surfaces with weak emphasis. */
87
+ --wpds-color-bg-surface-success: var(
88
+ --wpds-color-private-success-surface4
89
+ ); /* Background color for surfaces with success tone and normal emphasis. */
90
+ --wpds-color-bg-surface-success-weak: var(
91
+ --wpds-color-private-success-surface2
92
+ ); /* Background color for surfaces with success tone and weak emphasis. */
93
+ --wpds-color-bg-surface-warning: var(
94
+ --wpds-color-private-warning-surface4
95
+ ); /* Background color for surfaces with warning tone and normal emphasis. */
96
+ --wpds-color-bg-surface-warning-weak: var(
97
+ --wpds-color-private-warning-surface2
98
+ ); /* Background color for surfaces with warning tone and weak emphasis. */
99
+ --wpds-color-bg-thumb-brand: var(
100
+ --wpds-color-private-primary-stroke3
101
+ ); /* Background color for thumbs with a brand tone and normal emphasis (eg. slider thumb and filled track). */
102
+ --wpds-color-bg-thumb-brand-active: var(
103
+ --wpds-color-private-primary-stroke3
104
+ ); /* Background color for thumbs with a brand tone and normal emphasis (eg. slider thumb and filled track) that are hovered, focused, or active. */
105
+ --wpds-color-bg-thumb-brand-disabled: var(
106
+ --wpds-color-private-bg-stroke2
107
+ ); /* Background color for thumbs with a brand tone and normal emphasis (eg. slider thumb and filled track), in their disabled state. */
108
+ --wpds-color-bg-thumb-neutral-weak: var(
109
+ --wpds-color-private-bg-stroke3
110
+ ); /* Background color for thumbs with a neutral tone and weak emphasis (eg. scrollbar thumb). */
111
+ --wpds-color-bg-thumb-neutral-weak-active: var(
112
+ --wpds-color-private-bg-stroke4
113
+ ); /* Background color for thumbs with a neutral tone and weak emphasis (eg. scrollbar thumb) that are hovered, focused, or active. */
114
+ --wpds-color-bg-track-neutral: var(
115
+ --wpds-color-private-bg-stroke2
116
+ ); /* Background color for tracks with a neutral tone and normal emphasis (eg. slider or progressbar track). */
117
+ --wpds-color-bg-track-neutral-weak: var(
118
+ --wpds-color-private-bg-stroke1
119
+ ); /* Background color for tracks with a neutral tone and weak emphasis (eg. scrollbar track). */
120
+ --wpds-color-fg-content-caution: var(
121
+ --wpds-color-private-caution-fg-surface4
122
+ ); /* Foreground color for content like text with caution tone and normal emphasis. */
123
+ --wpds-color-fg-content-caution-weak: var(
124
+ --wpds-color-private-caution-fg-surface3
125
+ ); /* Foreground color for content like text with caution tone and weak emphasis. */
126
+ --wpds-color-fg-content-error: var(
127
+ --wpds-color-private-error-fg-surface4
128
+ ); /* Foreground color for content like text with error tone and normal emphasis. */
129
+ --wpds-color-fg-content-error-weak: var(
130
+ --wpds-color-private-error-fg-surface3
131
+ ); /* Foreground color for content like text with error tone and weak emphasis. */
132
+ --wpds-color-fg-content-info: var(
133
+ --wpds-color-private-info-fg-surface4
134
+ ); /* Foreground color for content like text with info tone and normal emphasis. */
135
+ --wpds-color-fg-content-info-weak: var(
136
+ --wpds-color-private-info-fg-surface3
137
+ ); /* Foreground color for content like text with info tone and weak emphasis. */
138
+ --wpds-color-fg-content-neutral: var(
139
+ --wpds-color-private-bg-fg-surface4
140
+ ); /* Foreground color for content like text with normal emphasis. */
141
+ --wpds-color-fg-content-neutral-weak: var(
142
+ --wpds-color-private-bg-fg-surface3
143
+ ); /* Foreground color for content like text with weak emphasis. */
144
+ --wpds-color-fg-content-success: var(
145
+ --wpds-color-private-success-fg-surface4
146
+ ); /* Foreground color for content like text with success tone and normal emphasis. */
147
+ --wpds-color-fg-content-success-weak: var(
148
+ --wpds-color-private-success-fg-surface3
149
+ ); /* Foreground color for content like text with success tone and weak emphasis. */
150
+ --wpds-color-fg-content-warning: var(
151
+ --wpds-color-private-warning-fg-surface4
152
+ ); /* Foreground color for content like text with warning tone and normal emphasis. */
153
+ --wpds-color-fg-content-warning-weak: var(
154
+ --wpds-color-private-warning-fg-surface3
155
+ ); /* Foreground color for content like text with warning tone and weak emphasis. */
156
+ --wpds-color-fg-interactive-brand: var(
157
+ --wpds-color-private-primary-fg-surface3
158
+ ); /* Foreground color for interactive elements with brand tone and normal emphasis. */
159
+ --wpds-color-fg-interactive-brand-active: var(
160
+ --wpds-color-private-primary-fg-surface3
161
+ ); /* Foreground color for interactive elements with brand tone and normal emphasis that are hovered, focused, or active. */
162
+ --wpds-color-fg-interactive-brand-disabled: var(
163
+ --wpds-color-private-bg-fg-surface2
164
+ ); /* Foreground color for interactive elements with brand tone and normal emphasis, in their disabled state. */
165
+ --wpds-color-fg-interactive-brand-strong: var(
166
+ --wpds-color-private-primary-fg-fill
167
+ ); /* Foreground color for interactive elements with brand tone and strong emphasis. */
168
+ --wpds-color-fg-interactive-brand-strong-active: var(
169
+ --wpds-color-private-primary-fg-fill
170
+ ); /* Foreground color for interactive elements with brand tone and strong emphasis that are hovered, focused, or active. */
171
+ --wpds-color-fg-interactive-brand-strong-disabled: var(
172
+ --wpds-color-private-bg-fg-surface3
173
+ ); /* Foreground color for interactive elements with brand tone and strong emphasis, in their disabled state. */
174
+ --wpds-color-fg-interactive-neutral: var(
175
+ --wpds-color-private-bg-fg-surface4
176
+ ); /* Foreground color for interactive elements with neutral tone and normal emphasis. */
177
+ --wpds-color-fg-interactive-neutral-active: var(
178
+ --wpds-color-private-bg-fg-surface4
179
+ ); /* Foreground color for interactive elements with neutral tone and normal emphasis that are hovered, focused, or active. */
180
+ --wpds-color-fg-interactive-neutral-disabled: var(
181
+ --wpds-color-private-bg-fg-surface2
182
+ ); /* Foreground color for interactive elements with neutral tone and normal emphasis, in their disabled state. */
183
+ --wpds-color-fg-interactive-neutral-strong: var(
184
+ --wpds-color-private-bg-fg-fill-inverted
185
+ ); /* Foreground color for interactive elements with neutral tone and strong emphasis. */
186
+ --wpds-color-fg-interactive-neutral-strong-active: var(
187
+ --wpds-color-private-bg-fg-fill-inverted
188
+ ); /* Foreground color for interactive elements with neutral tone and strong emphasis that are hovered, focused, or active. */
189
+ --wpds-color-fg-interactive-neutral-strong-disabled: var(
190
+ --wpds-color-private-bg-fg-surface3
191
+ ); /* Foreground color for interactive elements with neutral tone and strong emphasis, in their disabled state. */
192
+ --wpds-color-fg-interactive-neutral-weak: var(
193
+ --wpds-color-private-bg-fg-surface3
194
+ ); /* Foreground color for interactive elements with neutral tone and weak emphasis. */
195
+ --wpds-color-fg-interactive-neutral-weak-disabled: var(
196
+ --wpds-color-private-bg-fg-surface2
197
+ ); /* Foreground color for interactive elements with neutral tone and weak emphasis, in their disabled state. */
198
+ --wpds-color-private-bg-bg-fill-dark: #1e1e1e;
199
+ --wpds-color-private-bg-bg-fill-inverted1: #2f2f2f;
200
+ --wpds-color-private-bg-bg-fill-inverted2: #1e1e1e;
201
+ --wpds-color-private-bg-bg-fill1: #555555;
202
+ --wpds-color-private-bg-bg-fill2: #474747;
203
+ --wpds-color-private-bg-fg-fill: #f0f0f0;
204
+ --wpds-color-private-bg-fg-fill-dark: #f0f0f0;
205
+ --wpds-color-private-bg-fg-fill-inverted: #f0f0f0;
206
+ --wpds-color-private-bg-fg-surface1: #a9a9a9;
207
+ --wpds-color-private-bg-fg-surface2: #898989;
208
+ --wpds-color-private-bg-fg-surface3: #6d6d6d;
209
+ --wpds-color-private-bg-fg-surface4: #1e1e1e;
210
+ --wpds-color-private-bg-stroke1: #d0d0d0;
211
+ --wpds-color-private-bg-stroke2: #adadad;
212
+ --wpds-color-private-bg-stroke3: #898989;
213
+ --wpds-color-private-bg-stroke4: #6a6a6a;
214
+ --wpds-color-private-bg-surface1: #f0f0f0;
215
+ --wpds-color-private-bg-surface2: #f8f8f8;
216
+ --wpds-color-private-bg-surface3: #ffffff;
217
+ --wpds-color-private-bg-surface4: #eaeaea;
218
+ --wpds-color-private-bg-surface5: #dfdfdf;
219
+ --wpds-color-private-bg-surface6: #d0d0d0;
220
+ --wpds-color-private-caution-bg-fill-dark: #1f1e1b;
221
+ --wpds-color-private-caution-bg-fill-inverted1: #3d2d00;
222
+ --wpds-color-private-caution-bg-fill-inverted2: #1f1e1b;
223
+ --wpds-color-private-caution-bg-fill1: #f0d149;
224
+ --wpds-color-private-caution-bg-fill2: #dabb2b;
225
+ --wpds-color-private-caution-fg-fill: #1f1e1b;
226
+ --wpds-color-private-caution-fg-fill-dark: #f6f1da;
227
+ --wpds-color-private-caution-fg-fill-inverted: #f6f1da;
228
+ --wpds-color-private-caution-fg-surface1: #c6a800;
229
+ --wpds-color-private-caution-fg-surface2: #a58700;
230
+ --wpds-color-private-caution-fg-surface3: #866a00;
231
+ --wpds-color-private-caution-fg-surface4: #291d00;
232
+ --wpds-color-private-caution-stroke1: #b8ab76;
233
+ --wpds-color-private-caution-stroke2: #988d60;
234
+ --wpds-color-private-caution-stroke3: #866a00;
235
+ --wpds-color-private-caution-stroke4: #644e00;
236
+ --wpds-color-private-caution-surface1: #faf1cb;
237
+ --wpds-color-private-caution-surface2: #fdf9e7;
238
+ --wpds-color-private-caution-surface3: #ffffff;
239
+ --wpds-color-private-caution-surface4: #f8ebb6;
240
+ --wpds-color-private-caution-surface5: #f4e08c;
241
+ --wpds-color-private-caution-surface6: #e7d070;
242
+ --wpds-color-private-error-bg-fill-dark: #231c1b;
243
+ --wpds-color-private-error-bg-fill-inverted1: #6d0000;
244
+ --wpds-color-private-error-bg-fill-inverted2: #231c1b;
245
+ --wpds-color-private-error-bg-fill1: #cc1818;
246
+ --wpds-color-private-error-bg-fill2: #b90000;
247
+ --wpds-color-private-error-fg-fill: #f2efef;
248
+ --wpds-color-private-error-fg-fill-dark: #f2efef;
249
+ --wpds-color-private-error-fg-fill-inverted: #f2efef;
250
+ --wpds-color-private-error-fg-surface1: #ff8070;
251
+ --wpds-color-private-error-fg-surface2: #f64b40;
252
+ --wpds-color-private-error-fg-surface3: #cc1818;
253
+ --wpds-color-private-error-fg-surface4: #4a0000;
254
+ --wpds-color-private-error-stroke1: #dc9085;
255
+ --wpds-color-private-error-stroke2: #cd695d;
256
+ --wpds-color-private-error-stroke3: #cc1818;
257
+ --wpds-color-private-error-stroke4: #a40000;
258
+ --wpds-color-private-error-surface1: #fcecea;
259
+ --wpds-color-private-error-surface2: #fdf6f5;
260
+ --wpds-color-private-error-surface3: #ffffff;
261
+ --wpds-color-private-error-surface4: #fae6e2;
262
+ --wpds-color-private-error-surface5: #f8d8d3;
263
+ --wpds-color-private-error-surface6: #f5c5be;
264
+ --wpds-color-private-info-bg-fill-dark: #1b1e23;
265
+ --wpds-color-private-info-bg-fill-inverted1: #00297a;
266
+ --wpds-color-private-info-bg-fill-inverted2: #1b1e23;
267
+ --wpds-color-private-info-bg-fill1: #0090ff;
268
+ --wpds-color-private-info-bg-fill2: #007eec;
269
+ --wpds-color-private-info-fg-fill: #1b1e23;
270
+ --wpds-color-private-info-fg-fill-dark: #eff0f2;
271
+ --wpds-color-private-info-fg-fill-inverted: #eff0f2;
272
+ --wpds-color-private-info-fg-surface1: #4dafff;
273
+ --wpds-color-private-info-fg-surface2: #008bfa;
274
+ --wpds-color-private-info-fg-surface3: #006cd8;
275
+ --wpds-color-private-info-fg-surface4: #001758;
276
+ --wpds-color-private-info-stroke1: #8baed6;
277
+ --wpds-color-private-info-stroke2: #5e90c7;
278
+ --wpds-color-private-info-stroke3: #006cd8;
279
+ --wpds-color-private-info-stroke4: #004bb5;
280
+ --wpds-color-private-info-surface1: #e9f1fa;
281
+ --wpds-color-private-info-surface2: #f5f9fd;
282
+ --wpds-color-private-info-surface3: #ffffff;
283
+ --wpds-color-private-info-surface4: #e1ecf8;
284
+ --wpds-color-private-info-surface5: #d1e1f5;
285
+ --wpds-color-private-info-surface6: #bad3f0;
286
+ --wpds-color-private-primary-bg-fill-dark: #1b1e26;
287
+ --wpds-color-private-primary-bg-fill-inverted1: #1401a4;
288
+ --wpds-color-private-primary-bg-fill-inverted2: #1b1e26;
289
+ --wpds-color-private-primary-bg-fill1: #3858e9;
290
+ --wpds-color-private-primary-bg-fill2: #2c47d7;
291
+ --wpds-color-private-primary-fg-fill: #eff0f2;
292
+ --wpds-color-private-primary-fg-fill-dark: #eff0f2;
293
+ --wpds-color-private-primary-fg-fill-inverted: #eff0f2;
294
+ --wpds-color-private-primary-fg-surface1: #81a7ff;
295
+ --wpds-color-private-primary-fg-surface2: #5780ff;
296
+ --wpds-color-private-primary-fg-surface3: #3858e9;
297
+ --wpds-color-private-primary-fg-surface4: #080071;
298
+ --wpds-color-private-primary-stroke1: #92a4cf;
299
+ --wpds-color-private-primary-stroke2: #6f85c0;
300
+ --wpds-color-private-primary-stroke3: #3858e9;
301
+ --wpds-color-private-primary-stroke4: #2236c7;
302
+ --wpds-color-private-primary-surface1: #ecf0f9;
303
+ --wpds-color-private-primary-surface2: #f6f8fc;
304
+ --wpds-color-private-primary-surface3: #ffffff;
305
+ --wpds-color-private-primary-surface4: #e5eaf7;
306
+ --wpds-color-private-primary-surface5: #d8e0f3;
307
+ --wpds-color-private-primary-surface6: #c4d0ee;
308
+ --wpds-color-private-success-bg-fill-dark: #1b1f1c;
309
+ --wpds-color-private-success-bg-fill-inverted1: #003a00;
310
+ --wpds-color-private-success-bg-fill-inverted2: #1b1f1c;
311
+ --wpds-color-private-success-bg-fill1: #4ab866;
312
+ --wpds-color-private-success-bg-fill2: #34a554;
313
+ --wpds-color-private-success-fg-fill: #1b1f1c;
314
+ --wpds-color-private-success-fg-fill-dark: #edf2ed;
315
+ --wpds-color-private-success-fg-fill-inverted: #edf2ed;
316
+ --wpds-color-private-success-fg-surface1: #52bf6d;
317
+ --wpds-color-private-success-fg-surface2: #2a9e4d;
318
+ --wpds-color-private-success-fg-surface3: #008030;
319
+ --wpds-color-private-success-fg-surface4: #002b00;
320
+ --wpds-color-private-success-stroke1: #78ba84;
321
+ --wpds-color-private-success-stroke2: #62996c;
322
+ --wpds-color-private-success-stroke3: #008030;
323
+ --wpds-color-private-success-stroke4: #006113;
324
+ --wpds-color-private-success-surface1: #ddf8e0;
325
+ --wpds-color-private-success-surface2: #f0fcf2;
326
+ --wpds-color-private-success-surface3: #ffffff;
327
+ --wpds-color-private-success-surface4: #cdf5d3;
328
+ --wpds-color-private-success-surface5: #acf0b7;
329
+ --wpds-color-private-success-surface6: #7be792;
330
+ --wpds-color-private-warning-bg-fill-dark: #1f1e1b;
331
+ --wpds-color-private-warning-bg-fill-inverted1: #472900;
332
+ --wpds-color-private-warning-bg-fill-inverted2: #1f1e1b;
333
+ --wpds-color-private-warning-bg-fill1: #f0b849;
334
+ --wpds-color-private-warning-bg-fill2: #dba430;
335
+ --wpds-color-private-warning-fg-fill: #1f1e1b;
336
+ --wpds-color-private-warning-fg-fill-dark: #f3f0e9;
337
+ --wpds-color-private-warning-fg-fill-inverted: #f3f0e9;
338
+ --wpds-color-private-warning-fg-surface1: #d7a02b;
339
+ --wpds-color-private-warning-fg-surface2: #b58000;
340
+ --wpds-color-private-warning-fg-surface3: #966200;
341
+ --wpds-color-private-warning-fg-surface4: #2f1800;
342
+ --wpds-color-private-warning-stroke1: #c2a777;
343
+ --wpds-color-private-warning-stroke2: #a08961;
344
+ --wpds-color-private-warning-stroke3: #966200;
345
+ --wpds-color-private-warning-stroke4: #724700;
346
+ --wpds-color-private-warning-surface1: #faefdb;
347
+ --wpds-color-private-warning-surface2: #fdf7ee;
348
+ --wpds-color-private-warning-surface3: #ffffff;
349
+ --wpds-color-private-warning-surface4: #f8e9cd;
350
+ --wpds-color-private-warning-surface5: #f5ddb2;
351
+ --wpds-color-private-warning-surface6: #f0cb89;
352
+ --wpds-color-stroke-focus-brand: var(
353
+ --wpds-color-private-primary-stroke3
354
+ ); /* Accessible stroke color applied to focus rings. */
355
+ --wpds-color-stroke-interactive-brand: var(
356
+ --wpds-color-private-primary-stroke3
357
+ ); /* Accessible stroke color used for interactive brand-toned elements with normal emphasis. */
358
+ --wpds-color-stroke-interactive-brand-active: var(
359
+ --wpds-color-private-primary-stroke4
360
+ ); /* Accessible stroke color used for interactive brand-toned elements with normal emphasis that are hovered, focused, or active. */
361
+ --wpds-color-stroke-interactive-brand-disabled: var(
362
+ --wpds-color-private-bg-stroke2
363
+ ); /* Accessible stroke color used for interactive brand-toned elements with normal emphasis, in their disabled state. */
364
+ --wpds-color-stroke-interactive-error-strong: var(
365
+ --wpds-color-private-error-stroke3
366
+ ); /* Accessible stroke color used for interactive error-toned elements with strong emphasis. */
367
+ --wpds-color-stroke-interactive-neutral: var(
368
+ --wpds-color-private-bg-stroke3
369
+ ); /* Accessible stroke color used for interactive neutrally-toned elements with normal emphasis. */
370
+ --wpds-color-stroke-interactive-neutral-active: var(
371
+ --wpds-color-private-bg-stroke4
372
+ ); /* Accessible stroke color used for interactive neutrally-toned elements with normal emphasis that are hovered, focused, or active. */
373
+ --wpds-color-stroke-interactive-neutral-disabled: var(
374
+ --wpds-color-private-bg-stroke2
375
+ ); /* Accessible stroke color used for interactive neutrally-toned elements with normal emphasis, in their disabled state. */
376
+ --wpds-color-stroke-interactive-neutral-strong: var(
377
+ --wpds-color-private-bg-stroke4
378
+ ); /* Accessible stroke color used for interactive neutrally-toned elements with strong emphasis. */
379
+ --wpds-color-stroke-surface-brand: var(
380
+ --wpds-color-private-primary-stroke1
381
+ ); /* Decorative stroke color used to define brand-toned surface boundaries with normal emphasis. */
382
+ --wpds-color-stroke-surface-brand-strong: var(
383
+ --wpds-color-private-primary-stroke3
384
+ ); /* Decorative stroke color used to define neutrally-toned surface boundaries with strong emphasis. */
385
+ --wpds-color-stroke-surface-error: var(
386
+ --wpds-color-private-error-stroke1
387
+ ); /* Decorative stroke color used to define error-toned surface boundaries with normal emphasis. */
388
+ --wpds-color-stroke-surface-error-strong: var(
389
+ --wpds-color-private-error-stroke3
390
+ ); /* Decorative stroke color used to define error-toned surface boundaries with strong emphasis. */
391
+ --wpds-color-stroke-surface-info: var(
392
+ --wpds-color-private-info-stroke1
393
+ ); /* Decorative stroke color used to define info-toned surface boundaries with normal emphasis. */
394
+ --wpds-color-stroke-surface-info-strong: var(
395
+ --wpds-color-private-info-stroke3
396
+ ); /* Decorative stroke color used to define info-toned surface boundaries with strong emphasis. */
397
+ --wpds-color-stroke-surface-neutral: var(
398
+ --wpds-color-private-bg-stroke2
399
+ ); /* Decorative stroke color used to define neutrally-toned surface boundaries with normal emphasis. */
400
+ --wpds-color-stroke-surface-neutral-strong: var(
401
+ --wpds-color-private-bg-stroke3
402
+ ); /* Decorative stroke color used to define neutrally-toned surface boundaries with strong emphasis. */
403
+ --wpds-color-stroke-surface-neutral-weak: var(
404
+ --wpds-color-private-bg-stroke1
405
+ ); /* Decorative stroke color used to define neutrally-toned surface boundaries with weak emphasis. */
406
+ --wpds-color-stroke-surface-success: var(
407
+ --wpds-color-private-success-stroke1
408
+ ); /* Decorative stroke color used to define success-toned surface boundaries with normal emphasis. */
409
+ --wpds-color-stroke-surface-success-strong: var(
410
+ --wpds-color-private-success-stroke3
411
+ ); /* Decorative stroke color used to define success-toned surface boundaries with strong emphasis. */
412
+ --wpds-color-stroke-surface-warning: var(
413
+ --wpds-color-private-warning-stroke1
414
+ ); /* Decorative stroke color used to define warning-toned surface boundaries with normal emphasis. */
415
+ --wpds-color-stroke-surface-warning-strong: var(
416
+ --wpds-color-private-warning-stroke3
417
+ ); /* Decorative stroke color used to define warning-toned surface boundaries with strong emphasis. */
418
+ --wpds-elevation-large: 0 5px 15px 0 #00000014, 0 15px 27px 0 #00000012,
419
+ 0 30px 36px 0 #0000000a, 0 50px 43px 0 #00000005; /* For components that confirm decisions or handle necessary interruptions. Example: Modals. */
420
+ --wpds-elevation-medium: 0 2px 3px 0 #0000000d, 0 4px 5px 0 #0000000a,
421
+ 0 12px 12px 0 #00000008, 0 16px 16px 0 #00000005; /* For components that offer additional actions. Example: Menus, Command Palette */
422
+ --wpds-elevation-small: 0 1px 2px 0 #0000000d, 0 2px 3px 0 #0000000a,
423
+ 0 6px 6px 0 #00000008, 0 8px 8px 0 #00000005; /* For components that provide contextual feedback without being intrusive. Generally non-interruptive. Example: Tooltips, Snackbar. */
424
+ --wpds-elevation-x-small: 0 1px 1px 0 #00000008, 0 1px 2px 0 #00000005,
425
+ 0 3px 3px 0 #00000005, 0 4px 4px 0 #00000003; /* For sections and containers that group related content and controls, which may overlap other content. Example: Preview Frame. */
426
+ --wpds-font-family-body: -apple-system, system-ui, "Segoe UI", "Roboto",
427
+ "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif; /* Body font family */
428
+ --wpds-font-family-heading: -apple-system, system-ui, "Segoe UI", "Roboto",
429
+ "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif; /* Headings font family */
430
+ --wpds-font-family-mono: "Menlo", "Consolas", monaco, monospace; /* Monospace font family */
431
+ --wpds-font-line-height-2x-large: 40px; /* 2X large line height */
432
+ --wpds-font-line-height-large: 28px; /* Large line height */
433
+ --wpds-font-line-height-medium: 24px; /* Medium line height */
434
+ --wpds-font-line-height-small: 20px; /* Small line height */
435
+ --wpds-font-line-height-x-large: 32px; /* Extra large line height */
436
+ --wpds-font-line-height-x-small: 16px; /* Extra small line height */
437
+ --wpds-font-size-2x-large: 32px; /* 2X large font size */
438
+ --wpds-font-size-large: 15px; /* Large font size */
439
+ --wpds-font-size-medium: 13px; /* Medium font size */
440
+ --wpds-font-size-small: 12px; /* Small font size */
441
+ --wpds-font-size-x-large: 20px; /* Extra large font size */
442
+ --wpds-font-size-x-small: 11px; /* Extra small font size */
443
+ --wpds-spacing-05: 4px; /* Extra small spacing */
444
+ --wpds-spacing-10: 8px; /* Small spacing */
445
+ --wpds-spacing-15: 12px; /* Medium spacing */
446
+ --wpds-spacing-20: 16px; /* Large spacing */
447
+ --wpds-spacing-30: 24px; /* Extra large spacing */
448
+ --wpds-spacing-40: 32px; /* 2X large spacing */
449
+ --wpds-spacing-50: 40px; /* 3X large spacing */
450
+ --wpds-spacing-60: 48px; /* 4X large spacing */
451
+ --wpds-spacing-70: 56px; /* 5X large spacing */
452
+ --wpds-spacing-80: 64px; /* 6X large spacing */
453
+ }
454
+
455
+ @media (min-resolution: 192dpi) {
456
+ :root {
457
+ --wpds-border-width-focus: 1.5px; /* Border width for focus ring */
458
+ }
459
+ }
460
+ /**
461
+ * Colors
462
+ */
463
+ /**
464
+ * SCSS Variables.
465
+ *
466
+ * Please use variables from this sheet to ensure consistency across the UI.
467
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
468
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
469
+ */
470
+ /**
471
+ * Fonts & basic variables.
472
+ */
473
+ /**
474
+ * Typography
475
+ */
476
+ /**
477
+ * Grid System.
478
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
479
+ */
480
+ /**
481
+ * Radius scale.
482
+ */
483
+ /**
484
+ * Elevation scale.
485
+ */
486
+ /**
487
+ * Dimensions.
488
+ */
489
+ /**
490
+ * Mobile specific styles
491
+ */
492
+ /**
493
+ * Editor styles.
494
+ */
495
+ /**
496
+ * Block & Editor UI.
497
+ */
498
+ /**
499
+ * Block paddings.
500
+ */
501
+ /**
502
+ * React Native specific.
503
+ * These variables do not appear to be used anywhere else.
504
+ */
505
+ /**
506
+ * Typography
507
+ */
508
+ /**
509
+ * Breakpoints & Media Queries
510
+ */
511
+ /**
512
+ * Converts a hex value into the rgb equivalent.
513
+ *
514
+ * @param {string} hex - the hexadecimal value to convert
515
+ * @return {string} comma separated rgb values
516
+ */
517
+ /**
518
+ * Long content fade mixin
519
+ *
520
+ * Creates a fading overlay to signify that the content is longer
521
+ * than the space allows.
522
+ */
523
+ /**
524
+ * Breakpoint mixins
525
+ */
526
+ /**
527
+ * Focus styles.
528
+ */
529
+ /**
530
+ * Applies editor left position to the selector passed as argument
531
+ */
532
+ /**
533
+ * Styles that are reused verbatim in a few places
534
+ */
535
+ /**
536
+ * Allows users to opt-out of animations via OS-level preferences.
537
+ */
538
+ /**
539
+ * Reset default styles for JavaScript UI based pages.
540
+ * This is a WP-admin agnostic reset
541
+ */
542
+ /**
543
+ * Reset the WP Admin page styles for Gutenberg-like pages.
544
+ */
545
+ .admin-ui-page {
546
+ display: flex;
547
+ height: 100%;
548
+ background-color: #fff;
549
+ color: #2f2f2f;
550
+ position: relative;
551
+ z-index: 1;
552
+ flex-flow: column;
553
+ container: admin-ui-page/inline-size;
554
+ }
555
+
556
+ @media not (prefers-reduced-motion) {
557
+ .admin-ui-page {
558
+ transition: width ease-out 0.2s;
559
+ }
560
+ }
561
+ .admin-ui-page__header {
562
+ padding: 16px 48px;
563
+ border-bottom: 1px solid #f0f0f0;
564
+ background: #fff;
565
+ position: sticky;
566
+ top: 0;
567
+ }
568
+
569
+ @container (max-width: 430px) {
570
+ .admin-ui-page__header {
571
+ padding: 16px 24px;
572
+ }
573
+ }
574
+ .admin-ui-page__header-subtitle {
575
+ padding-block-end: 8px;
576
+ color: #757575;
577
+ font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
578
+ font-weight: 400;
579
+ font-size: 13px;
580
+ line-height: 20px;
581
+ margin: 0;
582
+ }
583
+
584
+ .admin-ui-page__content {
585
+ flex-grow: 1;
586
+ overflow: auto;
587
+ display: flex;
588
+ flex-direction: column;
589
+ }
590
+
591
+ .admin-ui-page__content.has-padding {
592
+ padding: 16px 20px;
593
+ }
594
+
595
+ @container (max-width: 430px) {
596
+ .admin-ui-page__content.has-padding {
597
+ padding: 16px 24px;
598
+ }
599
+ }
600
+ .show-icon-labels .admin-ui-page__header-actions .components-button.has-icon {
601
+ width: auto;
602
+ padding: 0 8px;
603
+ }
604
+
605
+ .show-icon-labels .admin-ui-page__header-actions .components-button.has-icon svg {
606
+ display: none;
607
+ }
608
+
609
+ .show-icon-labels .admin-ui-page__header-actions .components-button.has-icon::after {
610
+ content: attr(aria-label);
611
+ font-size: 12px;
612
+ }
@@ -0,0 +1,6 @@
1
+ import type { MenuItem, Route } from '../../store/types';
2
+ export declare function init({ menuItems, routes, }: {
3
+ menuItems?: MenuItem[];
4
+ routes?: Route[];
5
+ }): Promise<void>;
6
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/app/index.tsx"],"names":[],"mappings":"AAWA,OAAO,KAAK,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAQzD,wBAAsB,IAAI,CAAE,EAC3B,SAAS,EACT,MAAM,GACN,EAAE;IACF,SAAS,CAAC,EAAE,QAAQ,EAAE,CAAC;IACvB,MAAM,CAAC,EAAE,KAAK,EAAE,CAAC;CACjB,iBAmBA"}
@@ -0,0 +1,7 @@
1
+ import type { Route } from '../../store/types';
2
+ interface RouterProps {
3
+ routes: Route[];
4
+ }
5
+ export default function Router({ routes }: RouterProps): import("react").JSX.Element;
6
+ export {};
7
+ //# sourceMappingURL=router.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"router.d.ts","sourceRoot":"","sources":["../../../src/components/app/router.tsx"],"names":[],"mappings":"AAyBA,OAAO,KAAK,EAAE,KAAK,EAAsB,MAAM,mBAAmB,CAAC;AAwInE,UAAU,WAAW;IACpB,MAAM,EAAE,KAAK,EAAE,CAAC;CAChB;AAED,MAAM,CAAC,OAAO,UAAU,MAAM,CAAE,EAAE,MAAM,EAAE,EAAE,WAAW,+BAgCtD"}
@@ -0,0 +1,34 @@
1
+ import type { ReactNode } from 'react';
2
+ import type { IconType } from '../../../store/types';
3
+ interface DrilldownItemProps {
4
+ /**
5
+ * Optional CSS class name.
6
+ */
7
+ className?: string;
8
+ /**
9
+ * Identifier of the navigation item.
10
+ */
11
+ id: string;
12
+ /**
13
+ * Icon to display with the navigation item.
14
+ */
15
+ icon?: IconType;
16
+ /**
17
+ * Whether to show placeholder icons for alignment.
18
+ */
19
+ shouldShowPlaceholder?: boolean;
20
+ /**
21
+ * Content to display inside the navigation item.
22
+ */
23
+ children: ReactNode;
24
+ /**
25
+ * Function to handle sidebar navigation when the item is clicked.
26
+ */
27
+ onNavigate: ({ id, direction, }: {
28
+ id?: string;
29
+ direction: 'forward' | 'backward';
30
+ }) => void;
31
+ }
32
+ export default function DrilldownItem({ className, id, icon, shouldShowPlaceholder, children, onNavigate, }: DrilldownItemProps): import("react").JSX.Element;
33
+ export {};
34
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/navigation/drilldown-item/index.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAmBvC,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAErD,UAAU,kBAAkB;IAC3B;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB;;OAEG;IACH,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC;;OAEG;IACH,QAAQ,EAAE,SAAS,CAAC;IACpB;;OAEG;IACH,UAAU,EAAE,CAAE,EACb,EAAE,EACF,SAAS,GACT,EAAE;QACF,EAAE,CAAC,EAAE,MAAM,CAAC;QACZ,SAAS,EAAE,SAAS,GAAG,UAAU,CAAC;KAClC,KAAM,IAAI,CAAC;CACZ;AAED,MAAM,CAAC,OAAO,UAAU,aAAa,CAAE,EACtC,SAAS,EACT,EAAE,EACF,IAAI,EACJ,qBAA4B,EAC5B,QAAQ,EACR,UAAU,GACV,EAAE,kBAAkB,+BAsBpB"}