@positron-js/cli 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +3 -0
- package/build-android.config.js +30 -0
- package/build-android.jsx +86 -0
- package/build-ios.config.js +27 -0
- package/build-ios.jsx +108 -0
- package/content/app/PositronApp/App.xaml +14 -0
- package/content/app/PositronApp/App.xaml.cs +42 -0
- package/content/app/PositronApp/MauiProgram.cs +35 -0
- package/content/app/PositronApp/Platforms/Android/AndroidManifest.xml +17 -0
- package/content/app/PositronApp/Platforms/Android/MainActivity.cs +59 -0
- package/content/app/PositronApp/Platforms/Android/MainApplication.cs +15 -0
- package/content/app/PositronApp/Platforms/Android/Resources/values/colors.xml +6 -0
- package/content/app/PositronApp/Platforms/Android/Resources/values/string.xml +4 -0
- package/content/app/PositronApp/Platforms/MacCatalyst/AppDelegate.cs +9 -0
- package/content/app/PositronApp/Platforms/MacCatalyst/Info.plist +30 -0
- package/content/app/PositronApp/Platforms/MacCatalyst/Program.cs +15 -0
- package/content/app/PositronApp/Platforms/Tizen/Main.cs +16 -0
- package/content/app/PositronApp/Platforms/Tizen/tizen-manifest.xml +15 -0
- package/content/app/PositronApp/Platforms/Windows/App.xaml +8 -0
- package/content/app/PositronApp/Platforms/Windows/App.xaml.cs +24 -0
- package/content/app/PositronApp/Platforms/Windows/Package.appxmanifest +46 -0
- package/content/app/PositronApp/Platforms/Windows/app.manifest +15 -0
- package/content/app/PositronApp/Platforms/iOS/AppDelegate.cs +20 -0
- package/content/app/PositronApp/Platforms/iOS/Info.plist +34 -0
- package/content/app/PositronApp/Platforms/iOS/Program.cs +15 -0
- package/content/app/PositronApp/PositronApp.csproj +99 -0
- package/content/app/PositronApp/Properties/launchSettings.json +8 -0
- package/content/app/PositronApp/Resources/AppIcon/appicon.svg +42 -0
- package/content/app/PositronApp/Resources/AppIcon/appiconfg.svg +41 -0
- package/content/app/PositronApp/Resources/Fonts/OpenSans-Regular.ttf +0 -0
- package/content/app/PositronApp/Resources/Fonts/OpenSans-Semibold.ttf +0 -0
- package/content/app/PositronApp/Resources/Images/dotnet_bot.svg +8 -0
- package/content/app/PositronApp/Resources/Raw/AboutAssets.txt +15 -0
- package/content/app/PositronApp/Resources/Splash/splash.svg +41 -0
- package/content/app/PositronApp/Resources/Styles/Colors.xaml +44 -0
- package/content/app/PositronApp/Resources/Styles/Styles.xaml +384 -0
- package/content/app/PositronApp/appsettings.json +5 -0
- package/content/app/PositronApp/config/google-services.json +3 -0
- package/content/app/PositronApp.sln +39 -0
- package/dist/App.d.ts +3 -0
- package/dist/App.d.ts.map +1 -0
- package/dist/App.js +5 -0
- package/dist/App.js.map +1 -0
- package/dist/AppCommand.d.ts +3 -0
- package/dist/AppCommand.d.ts.map +1 -0
- package/dist/AppCommand.js +8 -0
- package/dist/AppCommand.js.map +1 -0
- package/dist/AppInfo.d.ts +5 -0
- package/dist/AppInfo.d.ts.map +1 -0
- package/dist/AppInfo.js +10 -0
- package/dist/AppInfo.js.map +1 -0
- package/dist/cli.d.ts +39 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +155 -0
- package/dist/cli.js.map +1 -0
- package/dist/commands/init/init.d.ts +2 -0
- package/dist/commands/init/init.d.ts.map +1 -0
- package/dist/commands/init/init.js +29 -0
- package/dist/commands/init/init.js.map +1 -0
- package/dist/commands/sync/sync.d.ts +2 -0
- package/dist/commands/sync/sync.d.ts.map +1 -0
- package/dist/commands/sync/sync.js +61 -0
- package/dist/commands/sync/sync.js.map +1 -0
- package/dist/core/LocalFile.d.ts +17 -0
- package/dist/core/LocalFile.d.ts.map +1 -0
- package/dist/core/LocalFile.js +42 -0
- package/dist/core/LocalFile.js.map +1 -0
- package/dist/cwd/cwd.d.ts +13 -0
- package/dist/cwd/cwd.d.ts.map +1 -0
- package/dist/cwd/cwd.js +84 -0
- package/dist/cwd/cwd.js.map +1 -0
- package/dist/schema/appConfig.d.ts +6 -0
- package/dist/schema/appConfig.d.ts.map +1 -0
- package/dist/schema/appConfig.js +6 -0
- package/dist/schema/appConfig.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/index.js +1 -0
- package/package.json +23 -0
- package/src/App.ts +4 -0
- package/src/AppCommand.ts +9 -0
- package/src/AppInfo.ts +12 -0
- package/src/cli.ts +202 -0
- package/src/commands/init/init.ts +40 -0
- package/src/commands/sync/sync.ts +83 -0
- package/src/core/LocalFile.ts +59 -0
- package/src/cwd/cwd.ts +102 -0
- package/src/schema/appConfig.ts +5 -0
- package/tsconfig.json +31 -0
|
@@ -0,0 +1,384 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" ?>
|
|
2
|
+
<?xaml-comp compile="true" ?>
|
|
3
|
+
<ResourceDictionary
|
|
4
|
+
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
5
|
+
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml">
|
|
6
|
+
|
|
7
|
+
<Style TargetType="ActivityIndicator">
|
|
8
|
+
<Setter Property="Color" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
|
9
|
+
</Style>
|
|
10
|
+
|
|
11
|
+
<Style TargetType="IndicatorView">
|
|
12
|
+
<Setter Property="IndicatorColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}"/>
|
|
13
|
+
<Setter Property="SelectedIndicatorColor" Value="{AppThemeBinding Light={StaticResource Gray950}, Dark={StaticResource Gray100}}"/>
|
|
14
|
+
</Style>
|
|
15
|
+
|
|
16
|
+
<Style TargetType="Border">
|
|
17
|
+
<Setter Property="Stroke" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}" />
|
|
18
|
+
<Setter Property="StrokeShape" Value="Rectangle"/>
|
|
19
|
+
<Setter Property="StrokeThickness" Value="1"/>
|
|
20
|
+
</Style>
|
|
21
|
+
|
|
22
|
+
<Style TargetType="BoxView">
|
|
23
|
+
<Setter Property="Color" Value="{AppThemeBinding Light={StaticResource Gray950}, Dark={StaticResource Gray200}}" />
|
|
24
|
+
</Style>
|
|
25
|
+
|
|
26
|
+
<Style TargetType="Button">
|
|
27
|
+
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource Primary}}" />
|
|
28
|
+
<Setter Property="BackgroundColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
|
29
|
+
<Setter Property="FontFamily" Value="OpenSansRegular"/>
|
|
30
|
+
<Setter Property="FontSize" Value="14"/>
|
|
31
|
+
<Setter Property="CornerRadius" Value="8"/>
|
|
32
|
+
<Setter Property="Padding" Value="14,10"/>
|
|
33
|
+
<Setter Property="VisualStateManager.VisualStateGroups">
|
|
34
|
+
<VisualStateGroupList>
|
|
35
|
+
<VisualStateGroup x:Name="CommonStates">
|
|
36
|
+
<VisualState x:Name="Normal" />
|
|
37
|
+
<VisualState x:Name="Disabled">
|
|
38
|
+
<VisualState.Setters>
|
|
39
|
+
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray950}, Dark={StaticResource Gray200}}" />
|
|
40
|
+
<Setter Property="BackgroundColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray600}}" />
|
|
41
|
+
</VisualState.Setters>
|
|
42
|
+
</VisualState>
|
|
43
|
+
</VisualStateGroup>
|
|
44
|
+
</VisualStateGroupList>
|
|
45
|
+
</Setter>
|
|
46
|
+
</Style>
|
|
47
|
+
|
|
48
|
+
<Style TargetType="CheckBox">
|
|
49
|
+
<Setter Property="Color" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
|
50
|
+
<Setter Property="VisualStateManager.VisualStateGroups">
|
|
51
|
+
<VisualStateGroupList>
|
|
52
|
+
<VisualStateGroup x:Name="CommonStates">
|
|
53
|
+
<VisualState x:Name="Normal" />
|
|
54
|
+
<VisualState x:Name="Disabled">
|
|
55
|
+
<VisualState.Setters>
|
|
56
|
+
<Setter Property="Color" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
|
57
|
+
</VisualState.Setters>
|
|
58
|
+
</VisualState>
|
|
59
|
+
</VisualStateGroup>
|
|
60
|
+
</VisualStateGroupList>
|
|
61
|
+
</Setter>
|
|
62
|
+
</Style>
|
|
63
|
+
|
|
64
|
+
<Style TargetType="DatePicker">
|
|
65
|
+
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource White}}" />
|
|
66
|
+
<Setter Property="BackgroundColor" Value="Transparent" />
|
|
67
|
+
<Setter Property="FontFamily" Value="OpenSansRegular"/>
|
|
68
|
+
<Setter Property="FontSize" Value="14"/>
|
|
69
|
+
<Setter Property="VisualStateManager.VisualStateGroups">
|
|
70
|
+
<VisualStateGroupList>
|
|
71
|
+
<VisualStateGroup x:Name="CommonStates">
|
|
72
|
+
<VisualState x:Name="Normal" />
|
|
73
|
+
<VisualState x:Name="Disabled">
|
|
74
|
+
<VisualState.Setters>
|
|
75
|
+
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}" />
|
|
76
|
+
</VisualState.Setters>
|
|
77
|
+
</VisualState>
|
|
78
|
+
</VisualStateGroup>
|
|
79
|
+
</VisualStateGroupList>
|
|
80
|
+
</Setter>
|
|
81
|
+
</Style>
|
|
82
|
+
|
|
83
|
+
<Style TargetType="Editor">
|
|
84
|
+
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource White}}" />
|
|
85
|
+
<Setter Property="BackgroundColor" Value="Transparent" />
|
|
86
|
+
<Setter Property="FontFamily" Value="OpenSansRegular"/>
|
|
87
|
+
<Setter Property="FontSize" Value="14" />
|
|
88
|
+
<Setter Property="PlaceholderColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}" />
|
|
89
|
+
<Setter Property="VisualStateManager.VisualStateGroups">
|
|
90
|
+
<VisualStateGroupList>
|
|
91
|
+
<VisualStateGroup x:Name="CommonStates">
|
|
92
|
+
<VisualState x:Name="Normal" />
|
|
93
|
+
<VisualState x:Name="Disabled">
|
|
94
|
+
<VisualState.Setters>
|
|
95
|
+
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
|
96
|
+
</VisualState.Setters>
|
|
97
|
+
</VisualState>
|
|
98
|
+
</VisualStateGroup>
|
|
99
|
+
</VisualStateGroupList>
|
|
100
|
+
</Setter>
|
|
101
|
+
</Style>
|
|
102
|
+
|
|
103
|
+
<Style TargetType="Entry">
|
|
104
|
+
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource White}}" />
|
|
105
|
+
<Setter Property="BackgroundColor" Value="Transparent" />
|
|
106
|
+
<Setter Property="FontFamily" Value="OpenSansRegular"/>
|
|
107
|
+
<Setter Property="FontSize" Value="14" />
|
|
108
|
+
<Setter Property="PlaceholderColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}" />
|
|
109
|
+
<Setter Property="VisualStateManager.VisualStateGroups">
|
|
110
|
+
<VisualStateGroupList>
|
|
111
|
+
<VisualStateGroup x:Name="CommonStates">
|
|
112
|
+
<VisualState x:Name="Normal" />
|
|
113
|
+
<VisualState x:Name="Disabled">
|
|
114
|
+
<VisualState.Setters>
|
|
115
|
+
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
|
116
|
+
</VisualState.Setters>
|
|
117
|
+
</VisualState>
|
|
118
|
+
</VisualStateGroup>
|
|
119
|
+
</VisualStateGroupList>
|
|
120
|
+
</Setter>
|
|
121
|
+
</Style>
|
|
122
|
+
|
|
123
|
+
<Style TargetType="Frame">
|
|
124
|
+
<Setter Property="HasShadow" Value="False" />
|
|
125
|
+
<Setter Property="BorderColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray950}}" />
|
|
126
|
+
<Setter Property="CornerRadius" Value="8" />
|
|
127
|
+
</Style>
|
|
128
|
+
|
|
129
|
+
<Style TargetType="ImageButton">
|
|
130
|
+
<Setter Property="Opacity" Value="1" />
|
|
131
|
+
<Setter Property="BorderColor" Value="Transparent"/>
|
|
132
|
+
<Setter Property="BorderWidth" Value="0"/>
|
|
133
|
+
<Setter Property="CornerRadius" Value="0"/>
|
|
134
|
+
<Setter Property="VisualStateManager.VisualStateGroups">
|
|
135
|
+
<VisualStateGroupList>
|
|
136
|
+
<VisualStateGroup x:Name="CommonStates">
|
|
137
|
+
<VisualState x:Name="Normal" />
|
|
138
|
+
<VisualState x:Name="Disabled">
|
|
139
|
+
<VisualState.Setters>
|
|
140
|
+
<Setter Property="Opacity" Value="0.5" />
|
|
141
|
+
</VisualState.Setters>
|
|
142
|
+
</VisualState>
|
|
143
|
+
</VisualStateGroup>
|
|
144
|
+
</VisualStateGroupList>
|
|
145
|
+
</Setter>
|
|
146
|
+
</Style>
|
|
147
|
+
|
|
148
|
+
<Style TargetType="Label">
|
|
149
|
+
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource White}}" />
|
|
150
|
+
<Setter Property="FontFamily" Value="OpenSansRegular" />
|
|
151
|
+
<Setter Property="FontSize" Value="14" />
|
|
152
|
+
<Setter Property="VisualStateManager.VisualStateGroups">
|
|
153
|
+
<VisualStateGroupList>
|
|
154
|
+
<VisualStateGroup x:Name="CommonStates">
|
|
155
|
+
<VisualState x:Name="Normal" />
|
|
156
|
+
<VisualState x:Name="Disabled">
|
|
157
|
+
<VisualState.Setters>
|
|
158
|
+
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
|
159
|
+
</VisualState.Setters>
|
|
160
|
+
</VisualState>
|
|
161
|
+
</VisualStateGroup>
|
|
162
|
+
</VisualStateGroupList>
|
|
163
|
+
</Setter>
|
|
164
|
+
</Style>
|
|
165
|
+
|
|
166
|
+
<Style TargetType="ListView">
|
|
167
|
+
<Setter Property="SeparatorColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}" />
|
|
168
|
+
<Setter Property="RefreshControlColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource Gray200}}" />
|
|
169
|
+
</Style>
|
|
170
|
+
|
|
171
|
+
<Style TargetType="Picker">
|
|
172
|
+
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource White}}" />
|
|
173
|
+
<Setter Property="TitleColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource Gray200}}" />
|
|
174
|
+
<Setter Property="BackgroundColor" Value="Transparent" />
|
|
175
|
+
<Setter Property="FontFamily" Value="OpenSansRegular"/>
|
|
176
|
+
<Setter Property="FontSize" Value="14"/>
|
|
177
|
+
<Setter Property="VisualStateManager.VisualStateGroups">
|
|
178
|
+
<VisualStateGroupList>
|
|
179
|
+
<VisualStateGroup x:Name="CommonStates">
|
|
180
|
+
<VisualState x:Name="Normal" />
|
|
181
|
+
<VisualState x:Name="Disabled">
|
|
182
|
+
<VisualState.Setters>
|
|
183
|
+
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
|
184
|
+
<Setter Property="TitleColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
|
185
|
+
</VisualState.Setters>
|
|
186
|
+
</VisualState>
|
|
187
|
+
</VisualStateGroup>
|
|
188
|
+
</VisualStateGroupList>
|
|
189
|
+
</Setter>
|
|
190
|
+
</Style>
|
|
191
|
+
|
|
192
|
+
<Style TargetType="ProgressBar">
|
|
193
|
+
<Setter Property="ProgressColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
|
194
|
+
<Setter Property="VisualStateManager.VisualStateGroups">
|
|
195
|
+
<VisualStateGroupList>
|
|
196
|
+
<VisualStateGroup x:Name="CommonStates">
|
|
197
|
+
<VisualState x:Name="Normal" />
|
|
198
|
+
<VisualState x:Name="Disabled">
|
|
199
|
+
<VisualState.Setters>
|
|
200
|
+
<Setter Property="ProgressColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
|
201
|
+
</VisualState.Setters>
|
|
202
|
+
</VisualState>
|
|
203
|
+
</VisualStateGroup>
|
|
204
|
+
</VisualStateGroupList>
|
|
205
|
+
</Setter>
|
|
206
|
+
</Style>
|
|
207
|
+
|
|
208
|
+
<Style TargetType="RadioButton">
|
|
209
|
+
<Setter Property="Background" Value="Transparent"/>
|
|
210
|
+
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource White}}" />
|
|
211
|
+
<Setter Property="FontFamily" Value="OpenSansRegular"/>
|
|
212
|
+
<Setter Property="FontSize" Value="14"/>
|
|
213
|
+
<Setter Property="VisualStateManager.VisualStateGroups">
|
|
214
|
+
<VisualStateGroupList>
|
|
215
|
+
<VisualStateGroup x:Name="CommonStates">
|
|
216
|
+
<VisualState x:Name="Normal" />
|
|
217
|
+
<VisualState x:Name="Disabled">
|
|
218
|
+
<VisualState.Setters>
|
|
219
|
+
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
|
220
|
+
</VisualState.Setters>
|
|
221
|
+
</VisualState>
|
|
222
|
+
</VisualStateGroup>
|
|
223
|
+
</VisualStateGroupList>
|
|
224
|
+
</Setter>
|
|
225
|
+
</Style>
|
|
226
|
+
|
|
227
|
+
<Style TargetType="RefreshView">
|
|
228
|
+
<Setter Property="RefreshColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource Gray200}}" />
|
|
229
|
+
</Style>
|
|
230
|
+
|
|
231
|
+
<Style TargetType="SearchBar">
|
|
232
|
+
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource White}}" />
|
|
233
|
+
<Setter Property="PlaceholderColor" Value="{StaticResource Gray500}" />
|
|
234
|
+
<Setter Property="CancelButtonColor" Value="{StaticResource Gray500}" />
|
|
235
|
+
<Setter Property="BackgroundColor" Value="Transparent" />
|
|
236
|
+
<Setter Property="FontFamily" Value="OpenSansRegular" />
|
|
237
|
+
<Setter Property="FontSize" Value="14" />
|
|
238
|
+
<Setter Property="VisualStateManager.VisualStateGroups">
|
|
239
|
+
<VisualStateGroupList>
|
|
240
|
+
<VisualStateGroup x:Name="CommonStates">
|
|
241
|
+
<VisualState x:Name="Normal" />
|
|
242
|
+
<VisualState x:Name="Disabled">
|
|
243
|
+
<VisualState.Setters>
|
|
244
|
+
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
|
245
|
+
<Setter Property="PlaceholderColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
|
246
|
+
</VisualState.Setters>
|
|
247
|
+
</VisualState>
|
|
248
|
+
</VisualStateGroup>
|
|
249
|
+
</VisualStateGroupList>
|
|
250
|
+
</Setter>
|
|
251
|
+
</Style>
|
|
252
|
+
|
|
253
|
+
<Style TargetType="SearchHandler">
|
|
254
|
+
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource White}}" />
|
|
255
|
+
<Setter Property="PlaceholderColor" Value="{StaticResource Gray500}" />
|
|
256
|
+
<Setter Property="BackgroundColor" Value="Transparent" />
|
|
257
|
+
<Setter Property="FontFamily" Value="OpenSansRegular" />
|
|
258
|
+
<Setter Property="FontSize" Value="14" />
|
|
259
|
+
<Setter Property="VisualStateManager.VisualStateGroups">
|
|
260
|
+
<VisualStateGroupList>
|
|
261
|
+
<VisualStateGroup x:Name="CommonStates">
|
|
262
|
+
<VisualState x:Name="Normal" />
|
|
263
|
+
<VisualState x:Name="Disabled">
|
|
264
|
+
<VisualState.Setters>
|
|
265
|
+
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
|
266
|
+
<Setter Property="PlaceholderColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
|
267
|
+
</VisualState.Setters>
|
|
268
|
+
</VisualState>
|
|
269
|
+
</VisualStateGroup>
|
|
270
|
+
</VisualStateGroupList>
|
|
271
|
+
</Setter>
|
|
272
|
+
</Style>
|
|
273
|
+
|
|
274
|
+
<Style TargetType="Shadow">
|
|
275
|
+
<Setter Property="Radius" Value="15" />
|
|
276
|
+
<Setter Property="Opacity" Value="0.5" />
|
|
277
|
+
<Setter Property="Brush" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource White}}" />
|
|
278
|
+
<Setter Property="Offset" Value="10,10" />
|
|
279
|
+
</Style>
|
|
280
|
+
|
|
281
|
+
<Style TargetType="Slider">
|
|
282
|
+
<Setter Property="MinimumTrackColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
|
283
|
+
<Setter Property="MaximumTrackColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray600}}" />
|
|
284
|
+
<Setter Property="ThumbColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
|
285
|
+
<Setter Property="VisualStateManager.VisualStateGroups">
|
|
286
|
+
<VisualStateGroupList>
|
|
287
|
+
<VisualStateGroup x:Name="CommonStates">
|
|
288
|
+
<VisualState x:Name="Normal" />
|
|
289
|
+
<VisualState x:Name="Disabled">
|
|
290
|
+
<VisualState.Setters>
|
|
291
|
+
<Setter Property="MinimumTrackColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}"/>
|
|
292
|
+
<Setter Property="MaximumTrackColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}"/>
|
|
293
|
+
<Setter Property="ThumbColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}"/>
|
|
294
|
+
</VisualState.Setters>
|
|
295
|
+
</VisualState>
|
|
296
|
+
</VisualStateGroup>
|
|
297
|
+
</VisualStateGroupList>
|
|
298
|
+
</Setter>
|
|
299
|
+
</Style>
|
|
300
|
+
|
|
301
|
+
<Style TargetType="SwipeItem">
|
|
302
|
+
<Setter Property="BackgroundColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource Black}}" />
|
|
303
|
+
</Style>
|
|
304
|
+
|
|
305
|
+
<Style TargetType="Switch">
|
|
306
|
+
<Setter Property="OnColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
|
307
|
+
<Setter Property="ThumbColor" Value="{StaticResource White}" />
|
|
308
|
+
<Setter Property="VisualStateManager.VisualStateGroups">
|
|
309
|
+
<VisualStateGroupList>
|
|
310
|
+
<VisualStateGroup x:Name="CommonStates">
|
|
311
|
+
<VisualState x:Name="Normal" />
|
|
312
|
+
<VisualState x:Name="Disabled">
|
|
313
|
+
<VisualState.Setters>
|
|
314
|
+
<Setter Property="OnColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
|
315
|
+
<Setter Property="ThumbColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
|
316
|
+
</VisualState.Setters>
|
|
317
|
+
</VisualState>
|
|
318
|
+
<VisualState x:Name="On">
|
|
319
|
+
<VisualState.Setters>
|
|
320
|
+
<Setter Property="OnColor" Value="{AppThemeBinding Light={StaticResource Secondary}, Dark={StaticResource Gray200}}" />
|
|
321
|
+
<Setter Property="ThumbColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
|
322
|
+
</VisualState.Setters>
|
|
323
|
+
</VisualState>
|
|
324
|
+
<VisualState x:Name="Off">
|
|
325
|
+
<VisualState.Setters>
|
|
326
|
+
<Setter Property="ThumbColor" Value="{AppThemeBinding Light={StaticResource Gray400}, Dark={StaticResource Gray500}}" />
|
|
327
|
+
</VisualState.Setters>
|
|
328
|
+
</VisualState>
|
|
329
|
+
</VisualStateGroup>
|
|
330
|
+
</VisualStateGroupList>
|
|
331
|
+
</Setter>
|
|
332
|
+
</Style>
|
|
333
|
+
|
|
334
|
+
<Style TargetType="TimePicker">
|
|
335
|
+
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource White}}" />
|
|
336
|
+
<Setter Property="Background" Value="Transparent"/>
|
|
337
|
+
<Setter Property="FontFamily" Value="OpenSansRegular"/>
|
|
338
|
+
<Setter Property="FontSize" Value="14"/>
|
|
339
|
+
<Setter Property="VisualStateManager.VisualStateGroups">
|
|
340
|
+
<VisualStateGroupList>
|
|
341
|
+
<VisualStateGroup x:Name="CommonStates">
|
|
342
|
+
<VisualState x:Name="Normal" />
|
|
343
|
+
<VisualState x:Name="Disabled">
|
|
344
|
+
<VisualState.Setters>
|
|
345
|
+
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
|
346
|
+
</VisualState.Setters>
|
|
347
|
+
</VisualState>
|
|
348
|
+
</VisualStateGroup>
|
|
349
|
+
</VisualStateGroupList>
|
|
350
|
+
</Setter>
|
|
351
|
+
</Style>
|
|
352
|
+
|
|
353
|
+
<Style TargetType="Page" ApplyToDerivedTypes="True">
|
|
354
|
+
<Setter Property="Padding" Value="0"/>
|
|
355
|
+
<Setter Property="BackgroundColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource Black}}" />
|
|
356
|
+
</Style>
|
|
357
|
+
|
|
358
|
+
<Style TargetType="Shell" ApplyToDerivedTypes="True">
|
|
359
|
+
<Setter Property="Shell.BackgroundColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource Gray950}}" />
|
|
360
|
+
<Setter Property="Shell.ForegroundColor" Value="{OnPlatform WinUI={StaticResource Primary}, Default={StaticResource White}}" />
|
|
361
|
+
<Setter Property="Shell.TitleColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource White}}" />
|
|
362
|
+
<Setter Property="Shell.DisabledColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray950}}" />
|
|
363
|
+
<Setter Property="Shell.UnselectedColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray200}}" />
|
|
364
|
+
<Setter Property="Shell.NavBarHasShadow" Value="False" />
|
|
365
|
+
<Setter Property="Shell.TabBarBackgroundColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource Black}}" />
|
|
366
|
+
<Setter Property="Shell.TabBarForegroundColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
|
367
|
+
<Setter Property="Shell.TabBarTitleColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
|
368
|
+
<Setter Property="Shell.TabBarUnselectedColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource Gray200}}" />
|
|
369
|
+
</Style>
|
|
370
|
+
|
|
371
|
+
<Style TargetType="NavigationPage">
|
|
372
|
+
<Setter Property="BarBackgroundColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource Gray950}}" />
|
|
373
|
+
<Setter Property="BarTextColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource White}}" />
|
|
374
|
+
<Setter Property="IconColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource White}}" />
|
|
375
|
+
</Style>
|
|
376
|
+
|
|
377
|
+
<Style TargetType="TabbedPage">
|
|
378
|
+
<Setter Property="BarBackgroundColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource Gray950}}" />
|
|
379
|
+
<Setter Property="BarTextColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
|
380
|
+
<Setter Property="UnselectedTabColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray950}}" />
|
|
381
|
+
<Setter Property="SelectedTabColor" Value="{AppThemeBinding Light={StaticResource Gray950}, Dark={StaticResource Gray200}}" />
|
|
382
|
+
</Style>
|
|
383
|
+
|
|
384
|
+
</ResourceDictionary>
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
|
|
2
|
+
Microsoft Visual Studio Solution File, Format Version 12.00
|
|
3
|
+
# Visual Studio Version 17
|
|
4
|
+
VisualStudioVersion = 17.0.31611.283
|
|
5
|
+
MinimumVisualStudioVersion = 10.0.40219.1
|
|
6
|
+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PositronApp", "PositronApp\PositronApp.csproj", "{E0C46FB4-1684-4136-B1C8-00EB9AC13B17}"
|
|
7
|
+
EndProject
|
|
8
|
+
Global
|
|
9
|
+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
|
10
|
+
Debug|Any CPU = Debug|Any CPU
|
|
11
|
+
Release|Any CPU = Release|Any CPU
|
|
12
|
+
EndGlobalSection
|
|
13
|
+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
|
14
|
+
{E0C46FB4-1684-4136-B1C8-00EB9AC13B17}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
|
15
|
+
{E0C46FB4-1684-4136-B1C8-00EB9AC13B17}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
|
16
|
+
{E0C46FB4-1684-4136-B1C8-00EB9AC13B17}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
|
|
17
|
+
{E0C46FB4-1684-4136-B1C8-00EB9AC13B17}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
|
18
|
+
{E0C46FB4-1684-4136-B1C8-00EB9AC13B17}.Release|Any CPU.Build.0 = Release|Any CPU
|
|
19
|
+
{E0C46FB4-1684-4136-B1C8-00EB9AC13B17}.Release|Any CPU.Deploy.0 = Release|Any CPU
|
|
20
|
+
{94EFD1FF-BCFB-4790-9770-765F4643482E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
|
21
|
+
{94EFD1FF-BCFB-4790-9770-765F4643482E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
|
22
|
+
{94EFD1FF-BCFB-4790-9770-765F4643482E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
|
23
|
+
{94EFD1FF-BCFB-4790-9770-765F4643482E}.Release|Any CPU.Build.0 = Release|Any CPU
|
|
24
|
+
{02733C38-4706-440E-9E96-87908EF9F46D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
|
25
|
+
{02733C38-4706-440E-9E96-87908EF9F46D}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
|
26
|
+
{02733C38-4706-440E-9E96-87908EF9F46D}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
|
27
|
+
{02733C38-4706-440E-9E96-87908EF9F46D}.Release|Any CPU.Build.0 = Release|Any CPU
|
|
28
|
+
{BED46173-CE3C-4656-9C90-4659B7760FAB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
|
29
|
+
{BED46173-CE3C-4656-9C90-4659B7760FAB}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
|
30
|
+
{BED46173-CE3C-4656-9C90-4659B7760FAB}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
|
31
|
+
{BED46173-CE3C-4656-9C90-4659B7760FAB}.Release|Any CPU.Build.0 = Release|Any CPU
|
|
32
|
+
EndGlobalSection
|
|
33
|
+
GlobalSection(SolutionProperties) = preSolution
|
|
34
|
+
HideSolutionNode = FALSE
|
|
35
|
+
EndGlobalSection
|
|
36
|
+
GlobalSection(ExtensibilityGlobals) = postSolution
|
|
37
|
+
SolutionGuid = {61F7FB11-1E47-470C-91E2-47F8143E1572}
|
|
38
|
+
EndGlobalSection
|
|
39
|
+
EndGlobal
|
package/dist/App.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"App.d.ts","sourceRoot":"","sources":["../src/App.ts"],"names":[],"mappings":"AACA,OAAO,yBAAyB,CAAC;AACjC,OAAO,yBAAyB,CAAC"}
|
package/dist/App.js
ADDED
package/dist/App.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"App.js","sourceRoot":"","sources":["../src/App.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,UAAU,CAAC;AAC/B,OAAO,yBAAyB,CAAC;AACjC,OAAO,yBAAyB,CAAC;AACjC,GAAG,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AppCommand.d.ts","sourceRoot":"","sources":["../src/AppCommand.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAGpC,eAAO,MAAM,WAAW,SAAgB,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Command } from "commander";
|
|
2
|
+
import { AppInfo } from "./AppInfo.js";
|
|
3
|
+
export const AppCommands = new Command();
|
|
4
|
+
AppCommands
|
|
5
|
+
.name("@dot-web-shell/cli")
|
|
6
|
+
.description("CLI to create default dot web shell app.")
|
|
7
|
+
.version(AppInfo.version);
|
|
8
|
+
//# sourceMappingURL=AppCommand.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AppCommand.js","sourceRoot":"","sources":["../src/AppCommand.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAEvC,MAAM,CAAC,MAAM,WAAW,GAAG,IAAI,OAAO,EAAE,CAAC;AAEzC,WAAW;KACN,IAAI,CAAC,oBAAoB,CAAC;KAC1B,WAAW,CAAC,0CAA0C,CAAC;KACvD,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AppInfo.d.ts","sourceRoot":"","sources":["../src/AppInfo.ts"],"names":[],"mappings":"AAGA,OAAO,SAAS,MAAM,qBAAqB,CAAC;AAI5C,eAAO,MAAM,WAAW,QAAkB,CAAC;AAE3C,eAAO,MAAM,OAAO,KAAgD,CAAC;AAErE,eAAO,MAAM,kBAAkB,SAAU,MAAM,cAA2C,CAAC"}
|
package/dist/AppInfo.js
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { readFileSync } from "fs";
|
|
2
|
+
import { dirname, join } from "path";
|
|
3
|
+
import { fileURLToPath } from "url";
|
|
4
|
+
import LocalFile from "./core/LocalFile.js";
|
|
5
|
+
const dir = dirname(fileURLToPath(import.meta.url));
|
|
6
|
+
export const packagePath = join(dir, "..");
|
|
7
|
+
const packageFile = join(packagePath, "package.json");
|
|
8
|
+
export const AppInfo = JSON.parse(readFileSync(packageFile, "utf8"));
|
|
9
|
+
export const packageContentFile = (path) => new LocalFile(join(packagePath, path));
|
|
10
|
+
//# sourceMappingURL=AppInfo.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AppInfo.js","sourceRoot":"","sources":["../src/AppInfo.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,IAAI,CAAC;AAClC,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAC;AACrC,OAAO,EAAE,aAAa,EAAE,MAAM,KAAK,CAAC;AACpC,OAAO,SAAS,MAAM,qBAAqB,CAAC;AAG5C,MAAM,GAAG,GAAG,OAAO,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;AACpD,MAAM,CAAC,MAAM,WAAW,GAAG,IAAI,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;AAC3C,MAAM,WAAW,GAAG,IAAI,CAAC,WAAW,EAAE,cAAc,CAAC,CAAC;AACtD,MAAM,CAAC,MAAM,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,YAAY,CAAC,WAAW,EAAE,MAAM,CAAC,CAAC,CAAC;AAErE,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,IAAY,EAAE,EAAE,CAAC,IAAI,SAAS,CAAC,IAAI,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC,CAAC"}
|
package/dist/cli.d.ts
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
export interface ICommandOption {
|
|
2
|
+
required?: boolean;
|
|
3
|
+
/** -- will be prefixed automatically */
|
|
4
|
+
option: string;
|
|
5
|
+
description?: string;
|
|
6
|
+
/** - will be prefixed automatically */
|
|
7
|
+
short?: string;
|
|
8
|
+
defaultValue?: any;
|
|
9
|
+
prompt?: string;
|
|
10
|
+
}
|
|
11
|
+
export default interface ICommand {
|
|
12
|
+
name: string;
|
|
13
|
+
description?: string;
|
|
14
|
+
options: ICommandOption[];
|
|
15
|
+
execute: (command: any, options: any) => void | Promise<void>;
|
|
16
|
+
}
|
|
17
|
+
declare class Command {
|
|
18
|
+
readonly cmd: ICommand;
|
|
19
|
+
constructor(name: any);
|
|
20
|
+
executeCommand(options: string[]): Promise<void>;
|
|
21
|
+
description(description: string): this;
|
|
22
|
+
execute(fx: ((command: any, options: any) => void | Promise<void>)): this;
|
|
23
|
+
flag(option: string, description: string): this;
|
|
24
|
+
prompt(option: string, prompt: string, defaultValue?: string, description?: string): this;
|
|
25
|
+
requiredOption(option: string, prompt: string, description?: string): this;
|
|
26
|
+
toDetailedString(): string;
|
|
27
|
+
toString(): string;
|
|
28
|
+
}
|
|
29
|
+
export declare class CLI {
|
|
30
|
+
name: string;
|
|
31
|
+
description: string;
|
|
32
|
+
commands: Command[];
|
|
33
|
+
execute(argv?: string[]): Promise<void>;
|
|
34
|
+
findCommand(name: string): Command;
|
|
35
|
+
command(name: string): Command;
|
|
36
|
+
}
|
|
37
|
+
export declare let cli: CLI;
|
|
38
|
+
export {};
|
|
39
|
+
//# sourceMappingURL=cli.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,cAAc;IAC3B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,wCAAwC;IACxC,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,uCAAuC;IACvC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,YAAY,CAAC,EAAE,GAAG,CAAC;IACnB,MAAM,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,CAAC,OAAO,WAAW,QAAQ;IAC7B,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,EAAE,cAAc,EAAE,CAAC;IAC1B,OAAO,EAAE,CAAC,OAAO,KAAA,EAAE,OAAO,KAAA,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;CACvD;AAED,cAAM,OAAO;IAET,SAAgB,GAAG,EAAE,QAAQ,CAAuF;gBAExG,IAAI,KAAA;IAIV,cAAc,CAAC,OAAO,EAAE,MAAM,EAAE;IAiDtC,WAAW,CAAC,WAAW,EAAE,MAAM;IAK/B,OAAO,CAAC,EAAE,EAAE,CAAC,CAAC,OAAO,EAAE,GAAG,EAAE,OAAO,EAAE,GAAG,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAKlE,IAAI,CAAC,MAAM,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM;IAQxC,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,YAAY,CAAC,EAAE,MAAM,EAAE,WAAW,CAAC,EAAE,MAAM;IAUlF,cAAc,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAW,CAAC,EAAE,MAAM;IAUnE,gBAAgB;IAehB,QAAQ;CAGX;AAED,qBAAa,GAAG;IAEZ,IAAI,SAAc;IAElB,WAAW,SAAqB;IAEhC,QAAQ,EAAS,OAAO,EAAE,CAAC;IAErB,OAAO,CAAC,IAAI,WAAe;IAyCjC,WAAW,CAAC,IAAI,EAAE,MAAM;IASxB,OAAO,CAAC,IAAI,EAAE,MAAM;CAMvB;AAED,eAAO,IAAI,GAAG,KAAY,CAAC"}
|