openuispec 0.1.18 → 0.1.19

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 (96) hide show
  1. package/README.md +52 -34
  2. package/cli/index.ts +1 -1
  3. package/docs/stress-test-maturity-report.md +97 -0
  4. package/examples/todo-orbit/AGENTS.md +127 -0
  5. package/examples/todo-orbit/CLAUDE.md +127 -0
  6. package/examples/todo-orbit/README.md +62 -0
  7. package/examples/todo-orbit/generated/android/Todo Orbit/README.md +14 -0
  8. package/examples/todo-orbit/generated/android/Todo Orbit/app/build.gradle.kts +58 -0
  9. package/examples/todo-orbit/generated/android/Todo Orbit/app/proguard-rules.pro +1 -0
  10. package/examples/todo-orbit/generated/android/Todo Orbit/app/src/main/AndroidManifest.xml +20 -0
  11. package/examples/todo-orbit/generated/android/Todo Orbit/app/src/main/java/uz/rsteam/todoorbit/MainActivity.kt +14 -0
  12. package/examples/todo-orbit/generated/android/Todo Orbit/app/src/main/java/uz/rsteam/todoorbit/TodoOrbitApp.kt +345 -0
  13. package/examples/todo-orbit/generated/android/Todo Orbit/app/src/main/java/uz/rsteam/todoorbit/support/AppLogic.kt +231 -0
  14. package/examples/todo-orbit/generated/android/Todo Orbit/app/src/main/java/uz/rsteam/todoorbit/support/Models.kt +169 -0
  15. package/examples/todo-orbit/generated/android/Todo Orbit/app/src/main/java/uz/rsteam/todoorbit/support/Strings.kt +8 -0
  16. package/examples/todo-orbit/generated/android/Todo Orbit/app/src/main/java/uz/rsteam/todoorbit/ui/components/CommonComponents.kt +185 -0
  17. package/examples/todo-orbit/generated/android/Todo Orbit/app/src/main/java/uz/rsteam/todoorbit/ui/screens/AnalyticsScreen.kt +193 -0
  18. package/examples/todo-orbit/generated/android/Todo Orbit/app/src/main/java/uz/rsteam/todoorbit/ui/screens/SettingsScreen.kt +102 -0
  19. package/examples/todo-orbit/generated/android/Todo Orbit/app/src/main/java/uz/rsteam/todoorbit/ui/screens/TasksScreen.kt +342 -0
  20. package/examples/todo-orbit/generated/android/Todo Orbit/app/src/main/java/uz/rsteam/todoorbit/ui/sheets/EditorSheets.kt +344 -0
  21. package/examples/todo-orbit/generated/android/Todo Orbit/app/src/main/java/uz/rsteam/todoorbit/ui/theme/TodoOrbitTheme.kt +59 -0
  22. package/examples/todo-orbit/generated/android/Todo Orbit/app/src/main/res/values/strings.xml +148 -0
  23. package/examples/todo-orbit/generated/android/Todo Orbit/app/src/main/res/values-ru/strings.xml +154 -0
  24. package/examples/todo-orbit/generated/android/Todo Orbit/build.gradle.kts +4 -0
  25. package/examples/todo-orbit/generated/android/Todo Orbit/gradle/wrapper/gradle-wrapper.jar +0 -0
  26. package/examples/todo-orbit/generated/android/Todo Orbit/gradle/wrapper/gradle-wrapper.properties +7 -0
  27. package/examples/todo-orbit/generated/android/Todo Orbit/gradle.properties +4 -0
  28. package/examples/todo-orbit/generated/android/Todo Orbit/gradlew +248 -0
  29. package/examples/todo-orbit/generated/android/Todo Orbit/gradlew.bat +93 -0
  30. package/examples/todo-orbit/generated/android/Todo Orbit/settings.gradle.kts +18 -0
  31. package/examples/todo-orbit/generated/ios/Todo Orbit/README.md +29 -0
  32. package/examples/todo-orbit/generated/ios/Todo Orbit/Resources/en.lproj/Localizable.strings +118 -0
  33. package/examples/todo-orbit/generated/ios/Todo Orbit/Resources/ru.lproj/Localizable.strings +118 -0
  34. package/examples/todo-orbit/generated/ios/Todo Orbit/Sources/TodoOrbit/App/TodoOrbitApp.swift +50 -0
  35. package/examples/todo-orbit/generated/ios/Todo Orbit/Sources/TodoOrbit/Components/OrbitChrome.swift +204 -0
  36. package/examples/todo-orbit/generated/ios/Todo Orbit/Sources/TodoOrbit/Components/SchedulePreviewView.swift +126 -0
  37. package/examples/todo-orbit/generated/ios/Todo Orbit/Sources/TodoOrbit/Components/TrendChartView.swift +70 -0
  38. package/examples/todo-orbit/generated/ios/Todo Orbit/Sources/TodoOrbit/Flows/RecurringRuleSheet.swift +123 -0
  39. package/examples/todo-orbit/generated/ios/Todo Orbit/Sources/TodoOrbit/Flows/TaskEditorSheet.swift +60 -0
  40. package/examples/todo-orbit/generated/ios/Todo Orbit/Sources/TodoOrbit/Models/DomainModels.swift +238 -0
  41. package/examples/todo-orbit/generated/ios/Todo Orbit/Sources/TodoOrbit/Screens/AnalyticsView.swift +94 -0
  42. package/examples/todo-orbit/generated/ios/Todo Orbit/Sources/TodoOrbit/Screens/SettingsView.swift +74 -0
  43. package/examples/todo-orbit/generated/ios/Todo Orbit/Sources/TodoOrbit/Screens/TasksHomeView.swift +363 -0
  44. package/examples/todo-orbit/generated/ios/Todo Orbit/Sources/TodoOrbit/Support/AppModel.swift +324 -0
  45. package/examples/todo-orbit/generated/ios/Todo Orbit/TodoOrbit.xcodeproj/project.pbxproj +408 -0
  46. package/examples/todo-orbit/generated/ios/Todo Orbit/TodoOrbit.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  47. package/examples/todo-orbit/generated/ios/Todo Orbit/TodoOrbit.xcodeproj/xcshareddata/xcschemes/TodoOrbit.xcscheme +79 -0
  48. package/examples/todo-orbit/generated/ios/Todo Orbit/project.yml +24 -0
  49. package/examples/todo-orbit/generated/web/Todo Orbit/index.html +16 -0
  50. package/examples/todo-orbit/generated/web/Todo Orbit/package-lock.json +1087 -0
  51. package/examples/todo-orbit/generated/web/Todo Orbit/package.json +24 -0
  52. package/examples/todo-orbit/generated/web/Todo Orbit/src/App.tsx +2114 -0
  53. package/examples/todo-orbit/generated/web/Todo Orbit/src/main.tsx +13 -0
  54. package/examples/todo-orbit/generated/web/Todo Orbit/src/styles.css +886 -0
  55. package/examples/todo-orbit/generated/web/Todo Orbit/tsconfig.json +19 -0
  56. package/examples/todo-orbit/generated/web/Todo Orbit/vite.config.ts +6 -0
  57. package/examples/todo-orbit/openuispec/README.md +158 -0
  58. package/examples/todo-orbit/openuispec/contracts/.gitkeep +0 -0
  59. package/examples/todo-orbit/openuispec/contracts/action_trigger.yaml +28 -0
  60. package/examples/todo-orbit/openuispec/contracts/collection.yaml +32 -0
  61. package/examples/todo-orbit/openuispec/contracts/data_display.yaml +38 -0
  62. package/examples/todo-orbit/openuispec/contracts/feedback.yaml +32 -0
  63. package/examples/todo-orbit/openuispec/contracts/input_field.yaml +52 -0
  64. package/examples/todo-orbit/openuispec/contracts/nav_container.yaml +47 -0
  65. package/examples/todo-orbit/openuispec/contracts/surface.yaml +28 -0
  66. package/examples/todo-orbit/openuispec/contracts/x_schedule_preview.yaml +134 -0
  67. package/examples/todo-orbit/openuispec/contracts/x_task_trend_chart.yaml +139 -0
  68. package/examples/todo-orbit/openuispec/flows/.gitkeep +0 -0
  69. package/examples/todo-orbit/openuispec/flows/create_recurring_rule.yaml +253 -0
  70. package/examples/todo-orbit/openuispec/flows/create_task.yaml +118 -0
  71. package/examples/todo-orbit/openuispec/flows/edit_task.yaml +126 -0
  72. package/examples/todo-orbit/openuispec/locales/.gitkeep +0 -0
  73. package/examples/todo-orbit/openuispec/locales/en.json +150 -0
  74. package/examples/todo-orbit/openuispec/locales/ru.json +150 -0
  75. package/examples/todo-orbit/openuispec/openuispec.yaml +122 -0
  76. package/examples/todo-orbit/openuispec/platform/.gitkeep +0 -0
  77. package/examples/todo-orbit/openuispec/platform/android.yaml +19 -0
  78. package/examples/todo-orbit/openuispec/platform/ios.yaml +20 -0
  79. package/examples/todo-orbit/openuispec/platform/web.yaml +22 -0
  80. package/examples/todo-orbit/openuispec/screens/.gitkeep +0 -0
  81. package/examples/todo-orbit/openuispec/screens/analytics.yaml +139 -0
  82. package/examples/todo-orbit/openuispec/screens/home.yaml +172 -0
  83. package/examples/todo-orbit/openuispec/screens/settings.yaml +148 -0
  84. package/examples/todo-orbit/openuispec/screens/task_detail.yaml +223 -0
  85. package/examples/todo-orbit/openuispec/tokens/.gitkeep +0 -0
  86. package/examples/todo-orbit/openuispec/tokens/color.yaml +93 -0
  87. package/examples/todo-orbit/openuispec/tokens/elevation.yaml +25 -0
  88. package/examples/todo-orbit/openuispec/tokens/icons.yaml +92 -0
  89. package/examples/todo-orbit/openuispec/tokens/layout.yaml +107 -0
  90. package/examples/todo-orbit/openuispec/tokens/motion.yaml +39 -0
  91. package/examples/todo-orbit/openuispec/tokens/spacing.yaml +18 -0
  92. package/examples/todo-orbit/openuispec/tokens/themes.yaml +23 -0
  93. package/examples/todo-orbit/openuispec/tokens/typography.yaml +52 -0
  94. package/package.json +1 -1
  95. package/schema/validate.ts +0 -2
  96. package/spec/openuispec-v0.1.md +76 -12
@@ -0,0 +1,408 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 56;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ A00000010000000000000000 /* TodoOrbitApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = B00000010000000000000000 /* TodoOrbitApp.swift */; };
11
+ A00000020000000000000000 /* OrbitChrome.swift in Sources */ = {isa = PBXBuildFile; fileRef = B00000020000000000000000 /* OrbitChrome.swift */; };
12
+ A00000030000000000000000 /* SchedulePreviewView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B00000030000000000000000 /* SchedulePreviewView.swift */; };
13
+ A00000040000000000000000 /* TrendChartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B00000040000000000000000 /* TrendChartView.swift */; };
14
+ A00000050000000000000000 /* RecurringRuleSheet.swift in Sources */ = {isa = PBXBuildFile; fileRef = B00000050000000000000000 /* RecurringRuleSheet.swift */; };
15
+ A00000060000000000000000 /* TaskEditorSheet.swift in Sources */ = {isa = PBXBuildFile; fileRef = B00000060000000000000000 /* TaskEditorSheet.swift */; };
16
+ A00000070000000000000000 /* DomainModels.swift in Sources */ = {isa = PBXBuildFile; fileRef = B00000070000000000000000 /* DomainModels.swift */; };
17
+ A00000080000000000000000 /* AnalyticsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B00000080000000000000000 /* AnalyticsView.swift */; };
18
+ A00000090000000000000000 /* SettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B00000090000000000000000 /* SettingsView.swift */; };
19
+ A000000A0000000000000000 /* TasksHomeView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B000000A0000000000000000 /* TasksHomeView.swift */; };
20
+ A000000B0000000000000000 /* AppModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = B000000B0000000000000000 /* AppModel.swift */; };
21
+ A000000D0000000000000000 /* Charts.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B000000D0000000000000000 /* Charts.framework */; };
22
+ A000000E0000000000000000 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = B00000110000000000000000 /* Localizable.strings */; };
23
+ /* End PBXBuildFile section */
24
+
25
+ /* Begin PBXFileReference section */
26
+ B00000010000000000000000 /* TodoOrbitApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TodoOrbitApp.swift; sourceTree = "<group>"; };
27
+ B00000020000000000000000 /* OrbitChrome.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrbitChrome.swift; sourceTree = "<group>"; };
28
+ B00000030000000000000000 /* SchedulePreviewView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SchedulePreviewView.swift; sourceTree = "<group>"; };
29
+ B00000040000000000000000 /* TrendChartView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrendChartView.swift; sourceTree = "<group>"; };
30
+ B00000050000000000000000 /* RecurringRuleSheet.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RecurringRuleSheet.swift; sourceTree = "<group>"; };
31
+ B00000060000000000000000 /* TaskEditorSheet.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TaskEditorSheet.swift; sourceTree = "<group>"; };
32
+ B00000070000000000000000 /* DomainModels.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DomainModels.swift; sourceTree = "<group>"; };
33
+ B00000080000000000000000 /* AnalyticsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AnalyticsView.swift; sourceTree = "<group>"; };
34
+ B00000090000000000000000 /* SettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsView.swift; sourceTree = "<group>"; };
35
+ B000000A0000000000000000 /* TasksHomeView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TasksHomeView.swift; sourceTree = "<group>"; };
36
+ B000000B0000000000000000 /* AppModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppModel.swift; sourceTree = "<group>"; };
37
+ B000000D0000000000000000 /* Charts.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Charts.framework; path = System/Library/Frameworks/Charts.framework; sourceTree = SDKROOT; };
38
+ B000000E0000000000000000 /* TodoOrbit.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TodoOrbit.app; sourceTree = BUILT_PRODUCTS_DIR; };
39
+ B000000F0000000000000000 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = Resources/en.lproj/Localizable.strings; sourceTree = SOURCE_ROOT; };
40
+ B00000100000000000000000 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = Resources/ru.lproj/Localizable.strings; sourceTree = SOURCE_ROOT; };
41
+ /* End PBXFileReference section */
42
+
43
+ /* Begin PBXFrameworksBuildPhase section */
44
+ C00000010000000000000000 /* Frameworks */ = {
45
+ isa = PBXFrameworksBuildPhase;
46
+ buildActionMask = 2147483647;
47
+ files = (
48
+ A000000D0000000000000000 /* Charts.framework in Frameworks */,
49
+ );
50
+ runOnlyForDeploymentPostprocessing = 0;
51
+ };
52
+ /* End PBXFrameworksBuildPhase section */
53
+
54
+ /* Begin PBXGroup section */
55
+ D00000000000000000000000 = {
56
+ isa = PBXGroup;
57
+ children = (
58
+ D00000010000000000000000 /* Sources/TodoOrbit */,
59
+ D00000070000000000000000 /* Frameworks */,
60
+ D00000080000000000000000 /* Products */,
61
+ );
62
+ sourceTree = "<group>";
63
+ };
64
+ D00000010000000000000000 /* Sources/TodoOrbit */ = {
65
+ isa = PBXGroup;
66
+ children = (
67
+ D00000020000000000000000 /* App */,
68
+ D00000030000000000000000 /* Components */,
69
+ D00000040000000000000000 /* Flows */,
70
+ D00000050000000000000000 /* Models */,
71
+ D00000060000000000000000 /* Screens */,
72
+ D00000090000000000000000 /* Support */,
73
+ D000000A0000000000000000 /* Resources */,
74
+ );
75
+ path = Sources/TodoOrbit;
76
+ sourceTree = SOURCE_ROOT;
77
+ };
78
+ D00000020000000000000000 /* App */ = {
79
+ isa = PBXGroup;
80
+ children = (
81
+ B00000010000000000000000 /* TodoOrbitApp.swift */,
82
+ );
83
+ path = App;
84
+ sourceTree = "<group>";
85
+ };
86
+ D00000030000000000000000 /* Components */ = {
87
+ isa = PBXGroup;
88
+ children = (
89
+ B00000020000000000000000 /* OrbitChrome.swift */,
90
+ B00000030000000000000000 /* SchedulePreviewView.swift */,
91
+ B00000040000000000000000 /* TrendChartView.swift */,
92
+ );
93
+ path = Components;
94
+ sourceTree = "<group>";
95
+ };
96
+ D00000040000000000000000 /* Flows */ = {
97
+ isa = PBXGroup;
98
+ children = (
99
+ B00000050000000000000000 /* RecurringRuleSheet.swift */,
100
+ B00000060000000000000000 /* TaskEditorSheet.swift */,
101
+ );
102
+ path = Flows;
103
+ sourceTree = "<group>";
104
+ };
105
+ D00000050000000000000000 /* Models */ = {
106
+ isa = PBXGroup;
107
+ children = (
108
+ B00000070000000000000000 /* DomainModels.swift */,
109
+ );
110
+ path = Models;
111
+ sourceTree = "<group>";
112
+ };
113
+ D00000060000000000000000 /* Screens */ = {
114
+ isa = PBXGroup;
115
+ children = (
116
+ B00000080000000000000000 /* AnalyticsView.swift */,
117
+ B00000090000000000000000 /* SettingsView.swift */,
118
+ B000000A0000000000000000 /* TasksHomeView.swift */,
119
+ );
120
+ path = Screens;
121
+ sourceTree = "<group>";
122
+ };
123
+ D00000070000000000000000 /* Frameworks */ = {
124
+ isa = PBXGroup;
125
+ children = (
126
+ B000000D0000000000000000 /* Charts.framework */,
127
+ );
128
+ name = Frameworks;
129
+ sourceTree = "<group>";
130
+ };
131
+ D00000080000000000000000 /* Products */ = {
132
+ isa = PBXGroup;
133
+ children = (
134
+ B000000E0000000000000000 /* TodoOrbit.app */,
135
+ );
136
+ name = Products;
137
+ sourceTree = "<group>";
138
+ };
139
+ D00000090000000000000000 /* Support */ = {
140
+ isa = PBXGroup;
141
+ children = (
142
+ B000000B0000000000000000 /* AppModel.swift */,
143
+ );
144
+ path = Support;
145
+ sourceTree = "<group>";
146
+ };
147
+ D000000A0000000000000000 /* Resources */ = {
148
+ isa = PBXGroup;
149
+ children = (
150
+ B00000110000000000000000 /* Localizable.strings */,
151
+ );
152
+ name = Resources;
153
+ sourceTree = "<group>";
154
+ };
155
+ /* End PBXGroup section */
156
+
157
+ /* Begin PBXNativeTarget section */
158
+ E00000010000000000000000 /* TodoOrbit */ = {
159
+ isa = PBXNativeTarget;
160
+ buildConfigurationList = F00000010000000000000000 /* Build configuration list for PBXNativeTarget "TodoOrbit" */;
161
+ buildPhases = (
162
+ C00000020000000000000000 /* Sources */,
163
+ C00000010000000000000000 /* Frameworks */,
164
+ C00000030000000000000000 /* Resources */,
165
+ );
166
+ buildRules = (
167
+ );
168
+ dependencies = (
169
+ );
170
+ name = TodoOrbit;
171
+ productName = TodoOrbit;
172
+ productReference = B000000E0000000000000000 /* TodoOrbit.app */;
173
+ productType = "com.apple.product-type.application";
174
+ };
175
+ /* End PBXNativeTarget section */
176
+
177
+ /* Begin PBXProject section */
178
+ E00000020000000000000000 /* Project object */ = {
179
+ isa = PBXProject;
180
+ attributes = {
181
+ BuildIndependentTargetsInParallel = 1;
182
+ LastSwiftUpdateCheck = 2600;
183
+ LastUpgradeCheck = 2600;
184
+ TargetAttributes = {
185
+ E00000010000000000000000 = {
186
+ CreatedOnToolsVersion = 26.3;
187
+ };
188
+ };
189
+ };
190
+ buildConfigurationList = F00000020000000000000000 /* Build configuration list for PBXProject "TodoOrbit" */;
191
+ compatibilityVersion = "Xcode 14.0";
192
+ developmentRegion = en;
193
+ hasScannedForEncodings = 0;
194
+ knownRegions = (
195
+ en,
196
+ ru,
197
+ Base,
198
+ );
199
+ mainGroup = D00000000000000000000000;
200
+ productRefGroup = D00000080000000000000000 /* Products */;
201
+ projectDirPath = "";
202
+ projectRoot = "";
203
+ targets = (
204
+ E00000010000000000000000 /* TodoOrbit */,
205
+ );
206
+ };
207
+ /* End PBXProject section */
208
+
209
+ /* Begin PBXResourcesBuildPhase section */
210
+ C00000030000000000000000 /* Resources */ = {
211
+ isa = PBXResourcesBuildPhase;
212
+ buildActionMask = 2147483647;
213
+ files = (
214
+ A000000E0000000000000000 /* Localizable.strings in Resources */,
215
+ );
216
+ runOnlyForDeploymentPostprocessing = 0;
217
+ };
218
+ /* End PBXResourcesBuildPhase section */
219
+
220
+ /* Begin PBXSourcesBuildPhase section */
221
+ C00000020000000000000000 /* Sources */ = {
222
+ isa = PBXSourcesBuildPhase;
223
+ buildActionMask = 2147483647;
224
+ files = (
225
+ A00000010000000000000000 /* TodoOrbitApp.swift in Sources */,
226
+ A00000020000000000000000 /* OrbitChrome.swift in Sources */,
227
+ A00000030000000000000000 /* SchedulePreviewView.swift in Sources */,
228
+ A00000040000000000000000 /* TrendChartView.swift in Sources */,
229
+ A00000050000000000000000 /* RecurringRuleSheet.swift in Sources */,
230
+ A00000060000000000000000 /* TaskEditorSheet.swift in Sources */,
231
+ A00000070000000000000000 /* DomainModels.swift in Sources */,
232
+ A00000080000000000000000 /* AnalyticsView.swift in Sources */,
233
+ A00000090000000000000000 /* SettingsView.swift in Sources */,
234
+ A000000A0000000000000000 /* TasksHomeView.swift in Sources */,
235
+ A000000B0000000000000000 /* AppModel.swift in Sources */,
236
+ );
237
+ runOnlyForDeploymentPostprocessing = 0;
238
+ };
239
+ /* End PBXSourcesBuildPhase section */
240
+
241
+ /* Begin PBXVariantGroup section */
242
+ B00000110000000000000000 /* Localizable.strings */ = {
243
+ isa = PBXVariantGroup;
244
+ children = (
245
+ B000000F0000000000000000 /* en */,
246
+ B00000100000000000000000 /* ru */,
247
+ );
248
+ name = Localizable.strings;
249
+ sourceTree = "<group>";
250
+ };
251
+ /* End PBXVariantGroup section */
252
+
253
+ /* Begin XCBuildConfiguration section */
254
+ F00000030000000000000000 /* Debug */ = {
255
+ isa = XCBuildConfiguration;
256
+ buildSettings = {
257
+ ALWAYS_SEARCH_USER_PATHS = NO;
258
+ CLANG_ENABLE_MODULES = YES;
259
+ COPY_PHASE_STRIP = NO;
260
+ DEBUG_INFORMATION_FORMAT = dwarf;
261
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
262
+ ENABLE_TESTABILITY = YES;
263
+ GCC_C_LANGUAGE_STANDARD = gnu17;
264
+ GCC_DYNAMIC_NO_PIC = NO;
265
+ GCC_NO_COMMON_BLOCKS = YES;
266
+ GCC_OPTIMIZATION_LEVEL = 0;
267
+ GCC_PREPROCESSOR_DEFINITIONS = (
268
+ "DEBUG=1",
269
+ "$(inherited)",
270
+ );
271
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
272
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
273
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
274
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
275
+ GCC_WARN_UNUSED_FUNCTION = YES;
276
+ GCC_WARN_UNUSED_VARIABLE = YES;
277
+ IPHONEOS_DEPLOYMENT_TARGET = 17.0;
278
+ LOCALIZATION_PREFERS_STRING_CATALOGS = NO;
279
+ MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
280
+ MTL_FAST_MATH = YES;
281
+ ONLY_ACTIVE_ARCH = YES;
282
+ SDKROOT = iphoneos;
283
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
284
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
285
+ SWIFT_VERSION = 5.10;
286
+ TARGETED_DEVICE_FAMILY = "1,2";
287
+ };
288
+ name = Debug;
289
+ };
290
+ F00000040000000000000000 /* Release */ = {
291
+ isa = XCBuildConfiguration;
292
+ buildSettings = {
293
+ ALWAYS_SEARCH_USER_PATHS = NO;
294
+ CLANG_ENABLE_MODULES = YES;
295
+ COPY_PHASE_STRIP = NO;
296
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
297
+ ENABLE_NS_ASSERTIONS = NO;
298
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
299
+ GCC_C_LANGUAGE_STANDARD = gnu17;
300
+ GCC_NO_COMMON_BLOCKS = YES;
301
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
302
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
303
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
304
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
305
+ GCC_WARN_UNUSED_FUNCTION = YES;
306
+ GCC_WARN_UNUSED_VARIABLE = YES;
307
+ IPHONEOS_DEPLOYMENT_TARGET = 17.0;
308
+ LOCALIZATION_PREFERS_STRING_CATALOGS = NO;
309
+ MTL_ENABLE_DEBUG_INFO = NO;
310
+ MTL_FAST_MATH = YES;
311
+ SDKROOT = iphoneos;
312
+ SWIFT_COMPILATION_MODE = wholemodule;
313
+ SWIFT_OPTIMIZATION_LEVEL = "-O";
314
+ SWIFT_VERSION = 5.10;
315
+ TARGETED_DEVICE_FAMILY = "1,2";
316
+ VALIDATE_PRODUCT = YES;
317
+ };
318
+ name = Release;
319
+ };
320
+ F00000050000000000000000 /* Debug */ = {
321
+ isa = XCBuildConfiguration;
322
+ buildSettings = {
323
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
324
+ CODE_SIGN_IDENTITY = "Apple Development";
325
+ CODE_SIGN_STYLE = Automatic;
326
+ CURRENT_PROJECT_VERSION = 1;
327
+ DEVELOPMENT_ASSET_PATHS = "";
328
+ DEVELOPMENT_TEAM = C8598CHBN7;
329
+ GENERATE_INFOPLIST_FILE = YES;
330
+ INFOPLIST_KEY_CFBundleDisplayName = "Todo Orbit";
331
+ INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.productivity";
332
+ INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;
333
+ INFOPLIST_KEY_UILaunchScreen_Generation = YES;
334
+ IPHONEOS_DEPLOYMENT_TARGET = 17.0;
335
+ LD_RUNPATH_SEARCH_PATHS = (
336
+ "$(inherited)",
337
+ "@executable_path/Frameworks",
338
+ );
339
+ LOCALIZATION_PREFERS_STRING_CATALOGS = NO;
340
+ MARKETING_VERSION = 1.0;
341
+ PRODUCT_BUNDLE_IDENTIFIER = uz.rsteam.todoorbit.test;
342
+ PRODUCT_NAME = "$(TARGET_NAME)";
343
+ PROVISIONING_PROFILE_SPECIFIER = "";
344
+ SDKROOT = iphoneos;
345
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
346
+ SWIFT_EMIT_LOC_STRINGS = NO;
347
+ SWIFT_VERSION = 5.10;
348
+ TARGETED_DEVICE_FAMILY = "1,2";
349
+ };
350
+ name = Debug;
351
+ };
352
+ F00000060000000000000000 /* Release */ = {
353
+ isa = XCBuildConfiguration;
354
+ buildSettings = {
355
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
356
+ CODE_SIGN_IDENTITY = "Apple Development";
357
+ CODE_SIGN_STYLE = Automatic;
358
+ CURRENT_PROJECT_VERSION = 1;
359
+ DEVELOPMENT_ASSET_PATHS = "";
360
+ DEVELOPMENT_TEAM = C8598CHBN7;
361
+ GENERATE_INFOPLIST_FILE = YES;
362
+ INFOPLIST_KEY_CFBundleDisplayName = "Todo Orbit";
363
+ INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.productivity";
364
+ INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;
365
+ INFOPLIST_KEY_UILaunchScreen_Generation = YES;
366
+ IPHONEOS_DEPLOYMENT_TARGET = 17.0;
367
+ LD_RUNPATH_SEARCH_PATHS = (
368
+ "$(inherited)",
369
+ "@executable_path/Frameworks",
370
+ );
371
+ LOCALIZATION_PREFERS_STRING_CATALOGS = NO;
372
+ MARKETING_VERSION = 1.0;
373
+ PRODUCT_BUNDLE_IDENTIFIER = uz.rsteam.todoorbit.test;
374
+ PRODUCT_NAME = "$(TARGET_NAME)";
375
+ PROVISIONING_PROFILE_SPECIFIER = "";
376
+ SDKROOT = iphoneos;
377
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
378
+ SWIFT_EMIT_LOC_STRINGS = NO;
379
+ SWIFT_VERSION = 5.10;
380
+ TARGETED_DEVICE_FAMILY = "1,2";
381
+ };
382
+ name = Release;
383
+ };
384
+ /* End XCBuildConfiguration section */
385
+
386
+ /* Begin XCConfigurationList section */
387
+ F00000010000000000000000 /* Build configuration list for PBXNativeTarget "TodoOrbit" */ = {
388
+ isa = XCConfigurationList;
389
+ buildConfigurations = (
390
+ F00000050000000000000000 /* Debug */,
391
+ F00000060000000000000000 /* Release */,
392
+ );
393
+ defaultConfigurationIsVisible = 0;
394
+ defaultConfigurationName = Release;
395
+ };
396
+ F00000020000000000000000 /* Build configuration list for PBXProject "TodoOrbit" */ = {
397
+ isa = XCConfigurationList;
398
+ buildConfigurations = (
399
+ F00000030000000000000000 /* Debug */,
400
+ F00000040000000000000000 /* Release */,
401
+ );
402
+ defaultConfigurationIsVisible = 0;
403
+ defaultConfigurationName = Release;
404
+ };
405
+ /* End XCConfigurationList section */
406
+ };
407
+ rootObject = E00000020000000000000000 /* Project object */;
408
+ }
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Workspace
3
+ version = "1.0">
4
+ <FileRef
5
+ location = "self:">
6
+ </FileRef>
7
+ </Workspace>
@@ -0,0 +1,79 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Scheme
3
+ LastUpgradeVersion = "2600"
4
+ version = "1.7">
5
+ <BuildAction
6
+ parallelizeBuildables = "YES"
7
+ buildImplicitDependencies = "YES"
8
+ buildArchitectures = "Automatic">
9
+ <BuildActionEntries>
10
+ <BuildActionEntry
11
+ buildForTesting = "YES"
12
+ buildForRunning = "YES"
13
+ buildForProfiling = "YES"
14
+ buildForArchiving = "YES"
15
+ buildForAnalyzing = "YES">
16
+ <BuildableReference
17
+ BuildableIdentifier = "primary"
18
+ BlueprintIdentifier = "E00000010000000000000000"
19
+ BuildableName = "TodoOrbit.app"
20
+ BlueprintName = "TodoOrbit"
21
+ ReferencedContainer = "container:TodoOrbit.xcodeproj">
22
+ </BuildableReference>
23
+ </BuildActionEntry>
24
+ </BuildActionEntries>
25
+ </BuildAction>
26
+ <TestAction
27
+ buildConfiguration = "Debug"
28
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
29
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
30
+ shouldUseLaunchSchemeArgsEnv = "YES">
31
+ <Testables>
32
+ </Testables>
33
+ </TestAction>
34
+ <LaunchAction
35
+ buildConfiguration = "Debug"
36
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
37
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
38
+ launchStyle = "0"
39
+ useCustomWorkingDirectory = "NO"
40
+ ignoresPersistentStateOnLaunch = "NO"
41
+ debugDocumentVersioning = "YES"
42
+ debugServiceExtension = "internal"
43
+ allowLocationSimulation = "YES">
44
+ <BuildableProductRunnable
45
+ runnableDebuggingMode = "0">
46
+ <BuildableReference
47
+ BuildableIdentifier = "primary"
48
+ BlueprintIdentifier = "E00000010000000000000000"
49
+ BuildableName = "TodoOrbit.app"
50
+ BlueprintName = "TodoOrbit"
51
+ ReferencedContainer = "container:TodoOrbit.xcodeproj">
52
+ </BuildableReference>
53
+ </BuildableProductRunnable>
54
+ </LaunchAction>
55
+ <ProfileAction
56
+ buildConfiguration = "Release"
57
+ shouldUseLaunchSchemeArgsEnv = "YES"
58
+ savedToolIdentifier = ""
59
+ useCustomWorkingDirectory = "NO"
60
+ debugDocumentVersioning = "YES">
61
+ <BuildableProductRunnable
62
+ runnableDebuggingMode = "0">
63
+ <BuildableReference
64
+ BuildableIdentifier = "primary"
65
+ BlueprintIdentifier = "E00000010000000000000000"
66
+ BuildableName = "TodoOrbit.app"
67
+ BlueprintName = "TodoOrbit"
68
+ ReferencedContainer = "container:TodoOrbit.xcodeproj">
69
+ </BuildableReference>
70
+ </BuildableProductRunnable>
71
+ </ProfileAction>
72
+ <AnalyzeAction
73
+ buildConfiguration = "Debug">
74
+ </AnalyzeAction>
75
+ <ArchiveAction
76
+ buildConfiguration = "Release"
77
+ revealArchiveInOrganizer = "YES">
78
+ </ArchiveAction>
79
+ </Scheme>
@@ -0,0 +1,24 @@
1
+ name: TodoOrbit
2
+ options:
3
+ bundleIdPrefix: uz.rsteam.generated
4
+ settings:
5
+ base:
6
+ SWIFT_VERSION: 5.10
7
+ targets:
8
+ TodoOrbit:
9
+ type: application
10
+ platform: iOS
11
+ deploymentTarget: "17.0"
12
+ sources:
13
+ - path: Sources/TodoOrbit
14
+ resources:
15
+ - path: Resources
16
+ settings:
17
+ base:
18
+ PRODUCT_BUNDLE_IDENTIFIER: uz.rsteam.generated.todoorbit
19
+ INFOPLIST_KEY_CFBundleDisplayName: Todo Orbit
20
+ INFOPLIST_KEY_UILaunchScreen_Generation: YES
21
+ INFOPLIST_KEY_UIApplicationSceneManifest_Generation: YES
22
+ DEVELOPMENT_ASSET_PATHS: "\"Sources/TodoOrbit/Preview Content\""
23
+ dependencies:
24
+ - sdk: Charts.framework
@@ -0,0 +1,16 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>Todo Orbit</title>
7
+ <meta
8
+ name="description"
9
+ content="Generated web target for the Todo Orbit OpenUISpec project."
10
+ />
11
+ </head>
12
+ <body>
13
+ <div id="root"></div>
14
+ <script type="module" src="/src/main.tsx"></script>
15
+ </body>
16
+ </html>