@shortkitsdk/react-native 0.2.34 → 0.2.36
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/android/build.gradle.kts +8 -0
- package/android/libs/shortkit-release.aar +0 -0
- package/android/src/main/java/com/shortkit/reactnative/ReactCarouselOverlayHost.kt +100 -47
- package/android/src/main/java/com/shortkit/reactnative/ReactOverlayHost.kt +54 -8
- package/android/src/main/java/com/shortkit/reactnative/ReactVideoCarouselOverlayHost.kt +240 -27
- package/android/src/main/java/com/shortkit/reactnative/ShortKitBridge.kt +151 -1
- package/android/src/main/java/com/shortkit/reactnative/ShortKitFeedView.kt +135 -6
- package/android/src/main/java/com/shortkit/reactnative/ShortKitFeedViewManager.kt +15 -0
- package/android/src/main/java/com/shortkit/reactnative/ShortKitModule.kt +21 -11
- package/android/src/main/java/com/shortkit/reactnative/ShortKitPackage.kt +0 -2
- package/android/src/test/java/com/shortkit/reactnative/ReactCarouselOverlayHostEmitTest.kt +134 -0
- package/android/src/test/java/com/shortkit/reactnative/ReactOverlayHostDragTest.kt +45 -0
- package/android/src/test/java/com/shortkit/reactnative/ReactVideoCarouselOverlayHostDragTest.kt +69 -0
- package/android/src/test/java/com/shortkit/reactnative/ReactVideoCarouselOverlayHostEmitTest.kt +144 -0
- package/android/src/test/java/com/shortkit/reactnative/ShortKitFeedViewActivePropTest.kt +57 -0
- package/ios/ReactOverlayHost.swift +10 -8
- package/ios/ReactVideoCarouselOverlayHost.swift +6 -5
- package/ios/ShortKitBridge.swift +18 -0
- package/ios/ShortKitModule.mm +5 -0
- package/ios/ShortKitPlayerNativeView.swift +36 -0
- package/ios/ShortKitSDK.xcframework/ios-arm64/ShortKitSDK.framework/Info.plist +2 -2
- package/ios/ShortKitSDK.xcframework/ios-arm64/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/arm64-apple-ios.abi.json +1252 -82
- package/ios/ShortKitSDK.xcframework/ios-arm64/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/arm64-apple-ios.private.swiftinterface +28 -2
- package/ios/ShortKitSDK.xcframework/ios-arm64/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
- package/ios/ShortKitSDK.xcframework/ios-arm64/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/arm64-apple-ios.swiftinterface +28 -2
- package/ios/ShortKitSDK.xcframework/ios-arm64/ShortKitSDK.framework/ShortKitSDK +0 -0
- package/ios/ShortKitSDK.xcframework/ios-arm64/ShortKitSDK.framework/_CodeSignature/CodeResources +9 -9
- package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/Info.plist +2 -2
- package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/arm64-apple-ios-simulator.abi.json +1252 -82
- package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +28 -2
- package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface +28 -2
- package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json +1252 -82
- package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +28 -2
- package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +28 -2
- package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/ShortKitSDK +0 -0
- package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/_CodeSignature/CodeResources +17 -17
- package/ios/ShortKitWidgetNativeView.swift +30 -3
- package/ios/ShortKitWidgetNativeViewManager.mm +1 -0
- package/package.json +1 -1
- package/src/ShortKitCommands.ts +20 -0
- package/src/ShortKitFeed.tsx +21 -0
- package/src/ShortKitPlayer.tsx +20 -1
- package/src/ShortKitWidget.tsx +63 -15
- package/src/specs/NativeShortKitModule.ts +10 -0
- package/src/specs/ShortKitWidgetViewNativeComponent.ts +15 -3
- package/src/types.ts +40 -0
- package/android/src/main/java/com/shortkit/reactnative/ShortKitPlayerNativeView.kt +0 -149
- package/android/src/main/java/com/shortkit/reactnative/ShortKitPlayerViewManager.kt +0 -35
- package/android/src/main/java/com/shortkit/reactnative/ShortKitWidgetNativeView.kt +0 -149
- package/android/src/main/java/com/shortkit/reactnative/ShortKitWidgetViewManager.kt +0 -30
|
@@ -20078,6 +20078,257 @@
|
|
|
20078
20078
|
}
|
|
20079
20079
|
]
|
|
20080
20080
|
},
|
|
20081
|
+
{
|
|
20082
|
+
"kind": "TypeDecl",
|
|
20083
|
+
"name": "VideoCarouselCellLongPressState",
|
|
20084
|
+
"printedName": "VideoCarouselCellLongPressState",
|
|
20085
|
+
"children": [
|
|
20086
|
+
{
|
|
20087
|
+
"kind": "Var",
|
|
20088
|
+
"name": "began",
|
|
20089
|
+
"printedName": "began",
|
|
20090
|
+
"children": [
|
|
20091
|
+
{
|
|
20092
|
+
"kind": "TypeFunc",
|
|
20093
|
+
"name": "Function",
|
|
20094
|
+
"printedName": "(ShortKitSDK.VideoCarouselCellLongPressState.Type) -> ShortKitSDK.VideoCarouselCellLongPressState",
|
|
20095
|
+
"children": [
|
|
20096
|
+
{
|
|
20097
|
+
"kind": "TypeNominal",
|
|
20098
|
+
"name": "VideoCarouselCellLongPressState",
|
|
20099
|
+
"printedName": "ShortKitSDK.VideoCarouselCellLongPressState",
|
|
20100
|
+
"usr": "s:11ShortKitSDK31VideoCarouselCellLongPressStateO"
|
|
20101
|
+
},
|
|
20102
|
+
{
|
|
20103
|
+
"kind": "TypeNominal",
|
|
20104
|
+
"name": "Metatype",
|
|
20105
|
+
"printedName": "ShortKitSDK.VideoCarouselCellLongPressState.Type",
|
|
20106
|
+
"children": [
|
|
20107
|
+
{
|
|
20108
|
+
"kind": "TypeNominal",
|
|
20109
|
+
"name": "VideoCarouselCellLongPressState",
|
|
20110
|
+
"printedName": "ShortKitSDK.VideoCarouselCellLongPressState",
|
|
20111
|
+
"usr": "s:11ShortKitSDK31VideoCarouselCellLongPressStateO"
|
|
20112
|
+
}
|
|
20113
|
+
]
|
|
20114
|
+
}
|
|
20115
|
+
]
|
|
20116
|
+
}
|
|
20117
|
+
],
|
|
20118
|
+
"declKind": "EnumElement",
|
|
20119
|
+
"usr": "s:11ShortKitSDK31VideoCarouselCellLongPressStateO5beganyA2CmF",
|
|
20120
|
+
"mangledName": "$s11ShortKitSDK31VideoCarouselCellLongPressStateO5beganyA2CmF",
|
|
20121
|
+
"moduleName": "ShortKitSDK"
|
|
20122
|
+
},
|
|
20123
|
+
{
|
|
20124
|
+
"kind": "Var",
|
|
20125
|
+
"name": "ended",
|
|
20126
|
+
"printedName": "ended",
|
|
20127
|
+
"children": [
|
|
20128
|
+
{
|
|
20129
|
+
"kind": "TypeFunc",
|
|
20130
|
+
"name": "Function",
|
|
20131
|
+
"printedName": "(ShortKitSDK.VideoCarouselCellLongPressState.Type) -> ShortKitSDK.VideoCarouselCellLongPressState",
|
|
20132
|
+
"children": [
|
|
20133
|
+
{
|
|
20134
|
+
"kind": "TypeNominal",
|
|
20135
|
+
"name": "VideoCarouselCellLongPressState",
|
|
20136
|
+
"printedName": "ShortKitSDK.VideoCarouselCellLongPressState",
|
|
20137
|
+
"usr": "s:11ShortKitSDK31VideoCarouselCellLongPressStateO"
|
|
20138
|
+
},
|
|
20139
|
+
{
|
|
20140
|
+
"kind": "TypeNominal",
|
|
20141
|
+
"name": "Metatype",
|
|
20142
|
+
"printedName": "ShortKitSDK.VideoCarouselCellLongPressState.Type",
|
|
20143
|
+
"children": [
|
|
20144
|
+
{
|
|
20145
|
+
"kind": "TypeNominal",
|
|
20146
|
+
"name": "VideoCarouselCellLongPressState",
|
|
20147
|
+
"printedName": "ShortKitSDK.VideoCarouselCellLongPressState",
|
|
20148
|
+
"usr": "s:11ShortKitSDK31VideoCarouselCellLongPressStateO"
|
|
20149
|
+
}
|
|
20150
|
+
]
|
|
20151
|
+
}
|
|
20152
|
+
]
|
|
20153
|
+
}
|
|
20154
|
+
],
|
|
20155
|
+
"declKind": "EnumElement",
|
|
20156
|
+
"usr": "s:11ShortKitSDK31VideoCarouselCellLongPressStateO5endedyA2CmF",
|
|
20157
|
+
"mangledName": "$s11ShortKitSDK31VideoCarouselCellLongPressStateO5endedyA2CmF",
|
|
20158
|
+
"moduleName": "ShortKitSDK"
|
|
20159
|
+
},
|
|
20160
|
+
{
|
|
20161
|
+
"kind": "Var",
|
|
20162
|
+
"name": "cancelled",
|
|
20163
|
+
"printedName": "cancelled",
|
|
20164
|
+
"children": [
|
|
20165
|
+
{
|
|
20166
|
+
"kind": "TypeFunc",
|
|
20167
|
+
"name": "Function",
|
|
20168
|
+
"printedName": "(ShortKitSDK.VideoCarouselCellLongPressState.Type) -> ShortKitSDK.VideoCarouselCellLongPressState",
|
|
20169
|
+
"children": [
|
|
20170
|
+
{
|
|
20171
|
+
"kind": "TypeNominal",
|
|
20172
|
+
"name": "VideoCarouselCellLongPressState",
|
|
20173
|
+
"printedName": "ShortKitSDK.VideoCarouselCellLongPressState",
|
|
20174
|
+
"usr": "s:11ShortKitSDK31VideoCarouselCellLongPressStateO"
|
|
20175
|
+
},
|
|
20176
|
+
{
|
|
20177
|
+
"kind": "TypeNominal",
|
|
20178
|
+
"name": "Metatype",
|
|
20179
|
+
"printedName": "ShortKitSDK.VideoCarouselCellLongPressState.Type",
|
|
20180
|
+
"children": [
|
|
20181
|
+
{
|
|
20182
|
+
"kind": "TypeNominal",
|
|
20183
|
+
"name": "VideoCarouselCellLongPressState",
|
|
20184
|
+
"printedName": "ShortKitSDK.VideoCarouselCellLongPressState",
|
|
20185
|
+
"usr": "s:11ShortKitSDK31VideoCarouselCellLongPressStateO"
|
|
20186
|
+
}
|
|
20187
|
+
]
|
|
20188
|
+
}
|
|
20189
|
+
]
|
|
20190
|
+
}
|
|
20191
|
+
],
|
|
20192
|
+
"declKind": "EnumElement",
|
|
20193
|
+
"usr": "s:11ShortKitSDK31VideoCarouselCellLongPressStateO9cancelledyA2CmF",
|
|
20194
|
+
"mangledName": "$s11ShortKitSDK31VideoCarouselCellLongPressStateO9cancelledyA2CmF",
|
|
20195
|
+
"moduleName": "ShortKitSDK"
|
|
20196
|
+
},
|
|
20197
|
+
{
|
|
20198
|
+
"kind": "Constructor",
|
|
20199
|
+
"name": "init",
|
|
20200
|
+
"printedName": "init(rawValue:)",
|
|
20201
|
+
"children": [
|
|
20202
|
+
{
|
|
20203
|
+
"kind": "TypeNominal",
|
|
20204
|
+
"name": "Optional",
|
|
20205
|
+
"printedName": "ShortKitSDK.VideoCarouselCellLongPressState?",
|
|
20206
|
+
"children": [
|
|
20207
|
+
{
|
|
20208
|
+
"kind": "TypeNominal",
|
|
20209
|
+
"name": "VideoCarouselCellLongPressState",
|
|
20210
|
+
"printedName": "ShortKitSDK.VideoCarouselCellLongPressState",
|
|
20211
|
+
"usr": "s:11ShortKitSDK31VideoCarouselCellLongPressStateO"
|
|
20212
|
+
}
|
|
20213
|
+
],
|
|
20214
|
+
"usr": "s:Sq"
|
|
20215
|
+
},
|
|
20216
|
+
{
|
|
20217
|
+
"kind": "TypeNominal",
|
|
20218
|
+
"name": "String",
|
|
20219
|
+
"printedName": "Swift.String",
|
|
20220
|
+
"usr": "s:SS"
|
|
20221
|
+
}
|
|
20222
|
+
],
|
|
20223
|
+
"declKind": "Constructor",
|
|
20224
|
+
"usr": "s:11ShortKitSDK31VideoCarouselCellLongPressStateO8rawValueACSgSS_tcfc",
|
|
20225
|
+
"mangledName": "$s11ShortKitSDK31VideoCarouselCellLongPressStateO8rawValueACSgSS_tcfc",
|
|
20226
|
+
"moduleName": "ShortKitSDK",
|
|
20227
|
+
"implicit": true,
|
|
20228
|
+
"init_kind": "Designated"
|
|
20229
|
+
},
|
|
20230
|
+
{
|
|
20231
|
+
"kind": "Var",
|
|
20232
|
+
"name": "rawValue",
|
|
20233
|
+
"printedName": "rawValue",
|
|
20234
|
+
"children": [
|
|
20235
|
+
{
|
|
20236
|
+
"kind": "TypeNominal",
|
|
20237
|
+
"name": "String",
|
|
20238
|
+
"printedName": "Swift.String",
|
|
20239
|
+
"usr": "s:SS"
|
|
20240
|
+
}
|
|
20241
|
+
],
|
|
20242
|
+
"declKind": "Var",
|
|
20243
|
+
"usr": "s:11ShortKitSDK31VideoCarouselCellLongPressStateO8rawValueSSvp",
|
|
20244
|
+
"mangledName": "$s11ShortKitSDK31VideoCarouselCellLongPressStateO8rawValueSSvp",
|
|
20245
|
+
"moduleName": "ShortKitSDK",
|
|
20246
|
+
"implicit": true,
|
|
20247
|
+
"accessors": [
|
|
20248
|
+
{
|
|
20249
|
+
"kind": "Accessor",
|
|
20250
|
+
"name": "Get",
|
|
20251
|
+
"printedName": "Get()",
|
|
20252
|
+
"children": [
|
|
20253
|
+
{
|
|
20254
|
+
"kind": "TypeNominal",
|
|
20255
|
+
"name": "String",
|
|
20256
|
+
"printedName": "Swift.String",
|
|
20257
|
+
"usr": "s:SS"
|
|
20258
|
+
}
|
|
20259
|
+
],
|
|
20260
|
+
"declKind": "Accessor",
|
|
20261
|
+
"usr": "s:11ShortKitSDK31VideoCarouselCellLongPressStateO8rawValueSSvg",
|
|
20262
|
+
"mangledName": "$s11ShortKitSDK31VideoCarouselCellLongPressStateO8rawValueSSvg",
|
|
20263
|
+
"moduleName": "ShortKitSDK",
|
|
20264
|
+
"implicit": true,
|
|
20265
|
+
"accessorKind": "get"
|
|
20266
|
+
}
|
|
20267
|
+
]
|
|
20268
|
+
}
|
|
20269
|
+
],
|
|
20270
|
+
"declKind": "Enum",
|
|
20271
|
+
"usr": "s:11ShortKitSDK31VideoCarouselCellLongPressStateO",
|
|
20272
|
+
"mangledName": "$s11ShortKitSDK31VideoCarouselCellLongPressStateO",
|
|
20273
|
+
"moduleName": "ShortKitSDK",
|
|
20274
|
+
"declAttributes": [
|
|
20275
|
+
"AccessControl",
|
|
20276
|
+
"RawDocComment"
|
|
20277
|
+
],
|
|
20278
|
+
"enumRawTypeName": "String",
|
|
20279
|
+
"conformances": [
|
|
20280
|
+
{
|
|
20281
|
+
"kind": "Conformance",
|
|
20282
|
+
"name": "Copyable",
|
|
20283
|
+
"printedName": "Copyable",
|
|
20284
|
+
"usr": "s:s8CopyableP",
|
|
20285
|
+
"mangledName": "$ss8CopyableP"
|
|
20286
|
+
},
|
|
20287
|
+
{
|
|
20288
|
+
"kind": "Conformance",
|
|
20289
|
+
"name": "Equatable",
|
|
20290
|
+
"printedName": "Equatable",
|
|
20291
|
+
"usr": "s:SQ",
|
|
20292
|
+
"mangledName": "$sSQ"
|
|
20293
|
+
},
|
|
20294
|
+
{
|
|
20295
|
+
"kind": "Conformance",
|
|
20296
|
+
"name": "Escapable",
|
|
20297
|
+
"printedName": "Escapable",
|
|
20298
|
+
"usr": "s:s9EscapableP",
|
|
20299
|
+
"mangledName": "$ss9EscapableP"
|
|
20300
|
+
},
|
|
20301
|
+
{
|
|
20302
|
+
"kind": "Conformance",
|
|
20303
|
+
"name": "Hashable",
|
|
20304
|
+
"printedName": "Hashable",
|
|
20305
|
+
"usr": "s:SH",
|
|
20306
|
+
"mangledName": "$sSH"
|
|
20307
|
+
},
|
|
20308
|
+
{
|
|
20309
|
+
"kind": "Conformance",
|
|
20310
|
+
"name": "RawRepresentable",
|
|
20311
|
+
"printedName": "RawRepresentable",
|
|
20312
|
+
"children": [
|
|
20313
|
+
{
|
|
20314
|
+
"kind": "TypeWitness",
|
|
20315
|
+
"name": "RawValue",
|
|
20316
|
+
"printedName": "RawValue",
|
|
20317
|
+
"children": [
|
|
20318
|
+
{
|
|
20319
|
+
"kind": "TypeNominal",
|
|
20320
|
+
"name": "String",
|
|
20321
|
+
"printedName": "Swift.String",
|
|
20322
|
+
"usr": "s:SS"
|
|
20323
|
+
}
|
|
20324
|
+
]
|
|
20325
|
+
}
|
|
20326
|
+
],
|
|
20327
|
+
"usr": "s:SY",
|
|
20328
|
+
"mangledName": "$sSY"
|
|
20329
|
+
}
|
|
20330
|
+
]
|
|
20331
|
+
},
|
|
20081
20332
|
{
|
|
20082
20333
|
"kind": "TypeDecl",
|
|
20083
20334
|
"name": "ShortKitFeedViewController",
|
|
@@ -21171,6 +21422,362 @@
|
|
|
21171
21422
|
}
|
|
21172
21423
|
]
|
|
21173
21424
|
},
|
|
21425
|
+
{
|
|
21426
|
+
"kind": "TypeDecl",
|
|
21427
|
+
"name": "VideoCarouselCellLongPressPayload",
|
|
21428
|
+
"printedName": "VideoCarouselCellLongPressPayload",
|
|
21429
|
+
"children": [
|
|
21430
|
+
{
|
|
21431
|
+
"kind": "Var",
|
|
21432
|
+
"name": "id",
|
|
21433
|
+
"printedName": "id",
|
|
21434
|
+
"children": [
|
|
21435
|
+
{
|
|
21436
|
+
"kind": "TypeNominal",
|
|
21437
|
+
"name": "String",
|
|
21438
|
+
"printedName": "Swift.String",
|
|
21439
|
+
"usr": "s:SS"
|
|
21440
|
+
}
|
|
21441
|
+
],
|
|
21442
|
+
"declKind": "Var",
|
|
21443
|
+
"usr": "s:11ShortKitSDK0aB18FeedViewControllerC33VideoCarouselCellLongPressPayloadV2idSSvp",
|
|
21444
|
+
"mangledName": "$s11ShortKitSDK0aB18FeedViewControllerC33VideoCarouselCellLongPressPayloadV2idSSvp",
|
|
21445
|
+
"moduleName": "ShortKitSDK",
|
|
21446
|
+
"declAttributes": [
|
|
21447
|
+
"HasStorage",
|
|
21448
|
+
"AccessControl"
|
|
21449
|
+
],
|
|
21450
|
+
"isLet": true,
|
|
21451
|
+
"hasStorage": true,
|
|
21452
|
+
"accessors": [
|
|
21453
|
+
{
|
|
21454
|
+
"kind": "Accessor",
|
|
21455
|
+
"name": "Get",
|
|
21456
|
+
"printedName": "Get()",
|
|
21457
|
+
"children": [
|
|
21458
|
+
{
|
|
21459
|
+
"kind": "TypeNominal",
|
|
21460
|
+
"name": "String",
|
|
21461
|
+
"printedName": "Swift.String",
|
|
21462
|
+
"usr": "s:SS"
|
|
21463
|
+
}
|
|
21464
|
+
],
|
|
21465
|
+
"declKind": "Accessor",
|
|
21466
|
+
"usr": "s:11ShortKitSDK0aB18FeedViewControllerC33VideoCarouselCellLongPressPayloadV2idSSvg",
|
|
21467
|
+
"mangledName": "$s11ShortKitSDK0aB18FeedViewControllerC33VideoCarouselCellLongPressPayloadV2idSSvg",
|
|
21468
|
+
"moduleName": "ShortKitSDK",
|
|
21469
|
+
"implicit": true,
|
|
21470
|
+
"accessorKind": "get"
|
|
21471
|
+
}
|
|
21472
|
+
]
|
|
21473
|
+
},
|
|
21474
|
+
{
|
|
21475
|
+
"kind": "Var",
|
|
21476
|
+
"name": "index",
|
|
21477
|
+
"printedName": "index",
|
|
21478
|
+
"children": [
|
|
21479
|
+
{
|
|
21480
|
+
"kind": "TypeNominal",
|
|
21481
|
+
"name": "Int",
|
|
21482
|
+
"printedName": "Swift.Int",
|
|
21483
|
+
"usr": "s:Si"
|
|
21484
|
+
}
|
|
21485
|
+
],
|
|
21486
|
+
"declKind": "Var",
|
|
21487
|
+
"usr": "s:11ShortKitSDK0aB18FeedViewControllerC33VideoCarouselCellLongPressPayloadV5indexSivp",
|
|
21488
|
+
"mangledName": "$s11ShortKitSDK0aB18FeedViewControllerC33VideoCarouselCellLongPressPayloadV5indexSivp",
|
|
21489
|
+
"moduleName": "ShortKitSDK",
|
|
21490
|
+
"declAttributes": [
|
|
21491
|
+
"HasStorage",
|
|
21492
|
+
"AccessControl"
|
|
21493
|
+
],
|
|
21494
|
+
"isLet": true,
|
|
21495
|
+
"hasStorage": true,
|
|
21496
|
+
"accessors": [
|
|
21497
|
+
{
|
|
21498
|
+
"kind": "Accessor",
|
|
21499
|
+
"name": "Get",
|
|
21500
|
+
"printedName": "Get()",
|
|
21501
|
+
"children": [
|
|
21502
|
+
{
|
|
21503
|
+
"kind": "TypeNominal",
|
|
21504
|
+
"name": "Int",
|
|
21505
|
+
"printedName": "Swift.Int",
|
|
21506
|
+
"usr": "s:Si"
|
|
21507
|
+
}
|
|
21508
|
+
],
|
|
21509
|
+
"declKind": "Accessor",
|
|
21510
|
+
"usr": "s:11ShortKitSDK0aB18FeedViewControllerC33VideoCarouselCellLongPressPayloadV5indexSivg",
|
|
21511
|
+
"mangledName": "$s11ShortKitSDK0aB18FeedViewControllerC33VideoCarouselCellLongPressPayloadV5indexSivg",
|
|
21512
|
+
"moduleName": "ShortKitSDK",
|
|
21513
|
+
"implicit": true,
|
|
21514
|
+
"accessorKind": "get"
|
|
21515
|
+
}
|
|
21516
|
+
]
|
|
21517
|
+
},
|
|
21518
|
+
{
|
|
21519
|
+
"kind": "Var",
|
|
21520
|
+
"name": "pageIndex",
|
|
21521
|
+
"printedName": "pageIndex",
|
|
21522
|
+
"children": [
|
|
21523
|
+
{
|
|
21524
|
+
"kind": "TypeNominal",
|
|
21525
|
+
"name": "Int",
|
|
21526
|
+
"printedName": "Swift.Int",
|
|
21527
|
+
"usr": "s:Si"
|
|
21528
|
+
}
|
|
21529
|
+
],
|
|
21530
|
+
"declKind": "Var",
|
|
21531
|
+
"usr": "s:11ShortKitSDK0aB18FeedViewControllerC33VideoCarouselCellLongPressPayloadV9pageIndexSivp",
|
|
21532
|
+
"mangledName": "$s11ShortKitSDK0aB18FeedViewControllerC33VideoCarouselCellLongPressPayloadV9pageIndexSivp",
|
|
21533
|
+
"moduleName": "ShortKitSDK",
|
|
21534
|
+
"declAttributes": [
|
|
21535
|
+
"HasStorage",
|
|
21536
|
+
"AccessControl"
|
|
21537
|
+
],
|
|
21538
|
+
"isLet": true,
|
|
21539
|
+
"hasStorage": true,
|
|
21540
|
+
"accessors": [
|
|
21541
|
+
{
|
|
21542
|
+
"kind": "Accessor",
|
|
21543
|
+
"name": "Get",
|
|
21544
|
+
"printedName": "Get()",
|
|
21545
|
+
"children": [
|
|
21546
|
+
{
|
|
21547
|
+
"kind": "TypeNominal",
|
|
21548
|
+
"name": "Int",
|
|
21549
|
+
"printedName": "Swift.Int",
|
|
21550
|
+
"usr": "s:Si"
|
|
21551
|
+
}
|
|
21552
|
+
],
|
|
21553
|
+
"declKind": "Accessor",
|
|
21554
|
+
"usr": "s:11ShortKitSDK0aB18FeedViewControllerC33VideoCarouselCellLongPressPayloadV9pageIndexSivg",
|
|
21555
|
+
"mangledName": "$s11ShortKitSDK0aB18FeedViewControllerC33VideoCarouselCellLongPressPayloadV9pageIndexSivg",
|
|
21556
|
+
"moduleName": "ShortKitSDK",
|
|
21557
|
+
"implicit": true,
|
|
21558
|
+
"accessorKind": "get"
|
|
21559
|
+
}
|
|
21560
|
+
]
|
|
21561
|
+
},
|
|
21562
|
+
{
|
|
21563
|
+
"kind": "Var",
|
|
21564
|
+
"name": "state",
|
|
21565
|
+
"printedName": "state",
|
|
21566
|
+
"children": [
|
|
21567
|
+
{
|
|
21568
|
+
"kind": "TypeNominal",
|
|
21569
|
+
"name": "VideoCarouselCellLongPressState",
|
|
21570
|
+
"printedName": "ShortKitSDK.VideoCarouselCellLongPressState",
|
|
21571
|
+
"usr": "s:11ShortKitSDK31VideoCarouselCellLongPressStateO"
|
|
21572
|
+
}
|
|
21573
|
+
],
|
|
21574
|
+
"declKind": "Var",
|
|
21575
|
+
"usr": "s:11ShortKitSDK0aB18FeedViewControllerC33VideoCarouselCellLongPressPayloadV5stateAA0ghijK5StateOvp",
|
|
21576
|
+
"mangledName": "$s11ShortKitSDK0aB18FeedViewControllerC33VideoCarouselCellLongPressPayloadV5stateAA0ghijK5StateOvp",
|
|
21577
|
+
"moduleName": "ShortKitSDK",
|
|
21578
|
+
"declAttributes": [
|
|
21579
|
+
"HasStorage",
|
|
21580
|
+
"AccessControl"
|
|
21581
|
+
],
|
|
21582
|
+
"isLet": true,
|
|
21583
|
+
"hasStorage": true,
|
|
21584
|
+
"accessors": [
|
|
21585
|
+
{
|
|
21586
|
+
"kind": "Accessor",
|
|
21587
|
+
"name": "Get",
|
|
21588
|
+
"printedName": "Get()",
|
|
21589
|
+
"children": [
|
|
21590
|
+
{
|
|
21591
|
+
"kind": "TypeNominal",
|
|
21592
|
+
"name": "VideoCarouselCellLongPressState",
|
|
21593
|
+
"printedName": "ShortKitSDK.VideoCarouselCellLongPressState",
|
|
21594
|
+
"usr": "s:11ShortKitSDK31VideoCarouselCellLongPressStateO"
|
|
21595
|
+
}
|
|
21596
|
+
],
|
|
21597
|
+
"declKind": "Accessor",
|
|
21598
|
+
"usr": "s:11ShortKitSDK0aB18FeedViewControllerC33VideoCarouselCellLongPressPayloadV5stateAA0ghijK5StateOvg",
|
|
21599
|
+
"mangledName": "$s11ShortKitSDK0aB18FeedViewControllerC33VideoCarouselCellLongPressPayloadV5stateAA0ghijK5StateOvg",
|
|
21600
|
+
"moduleName": "ShortKitSDK",
|
|
21601
|
+
"implicit": true,
|
|
21602
|
+
"accessorKind": "get"
|
|
21603
|
+
}
|
|
21604
|
+
]
|
|
21605
|
+
}
|
|
21606
|
+
],
|
|
21607
|
+
"declKind": "Struct",
|
|
21608
|
+
"usr": "s:11ShortKitSDK0aB18FeedViewControllerC33VideoCarouselCellLongPressPayloadV",
|
|
21609
|
+
"mangledName": "$s11ShortKitSDK0aB18FeedViewControllerC33VideoCarouselCellLongPressPayloadV",
|
|
21610
|
+
"moduleName": "ShortKitSDK",
|
|
21611
|
+
"declAttributes": [
|
|
21612
|
+
"AccessControl",
|
|
21613
|
+
"RawDocComment"
|
|
21614
|
+
],
|
|
21615
|
+
"conformances": [
|
|
21616
|
+
{
|
|
21617
|
+
"kind": "Conformance",
|
|
21618
|
+
"name": "Copyable",
|
|
21619
|
+
"printedName": "Copyable",
|
|
21620
|
+
"usr": "s:s8CopyableP",
|
|
21621
|
+
"mangledName": "$ss8CopyableP"
|
|
21622
|
+
},
|
|
21623
|
+
{
|
|
21624
|
+
"kind": "Conformance",
|
|
21625
|
+
"name": "Escapable",
|
|
21626
|
+
"printedName": "Escapable",
|
|
21627
|
+
"usr": "s:s9EscapableP",
|
|
21628
|
+
"mangledName": "$ss9EscapableP"
|
|
21629
|
+
}
|
|
21630
|
+
]
|
|
21631
|
+
},
|
|
21632
|
+
{
|
|
21633
|
+
"kind": "Var",
|
|
21634
|
+
"name": "onVideoCarouselCellLongPress",
|
|
21635
|
+
"printedName": "onVideoCarouselCellLongPress",
|
|
21636
|
+
"children": [
|
|
21637
|
+
{
|
|
21638
|
+
"kind": "TypeNominal",
|
|
21639
|
+
"name": "Optional",
|
|
21640
|
+
"printedName": "((ShortKitSDK.ShortKitFeedViewController.VideoCarouselCellLongPressPayload) -> ())?",
|
|
21641
|
+
"children": [
|
|
21642
|
+
{
|
|
21643
|
+
"kind": "TypeFunc",
|
|
21644
|
+
"name": "Function",
|
|
21645
|
+
"printedName": "(ShortKitSDK.ShortKitFeedViewController.VideoCarouselCellLongPressPayload) -> ()",
|
|
21646
|
+
"children": [
|
|
21647
|
+
{
|
|
21648
|
+
"kind": "TypeNominal",
|
|
21649
|
+
"name": "Void",
|
|
21650
|
+
"printedName": "()"
|
|
21651
|
+
},
|
|
21652
|
+
{
|
|
21653
|
+
"kind": "TypeNominal",
|
|
21654
|
+
"name": "VideoCarouselCellLongPressPayload",
|
|
21655
|
+
"printedName": "ShortKitSDK.ShortKitFeedViewController.VideoCarouselCellLongPressPayload",
|
|
21656
|
+
"usr": "s:11ShortKitSDK0aB18FeedViewControllerC33VideoCarouselCellLongPressPayloadV"
|
|
21657
|
+
}
|
|
21658
|
+
]
|
|
21659
|
+
}
|
|
21660
|
+
],
|
|
21661
|
+
"usr": "s:Sq"
|
|
21662
|
+
}
|
|
21663
|
+
],
|
|
21664
|
+
"declKind": "Var",
|
|
21665
|
+
"usr": "s:11ShortKitSDK0aB18FeedViewControllerC28onVideoCarouselCellLongPressyAC0hijkL7PayloadVcSgvp",
|
|
21666
|
+
"mangledName": "$s11ShortKitSDK0aB18FeedViewControllerC28onVideoCarouselCellLongPressyAC0hijkL7PayloadVcSgvp",
|
|
21667
|
+
"moduleName": "ShortKitSDK",
|
|
21668
|
+
"declAttributes": [
|
|
21669
|
+
"HasInitialValue",
|
|
21670
|
+
"Preconcurrency",
|
|
21671
|
+
"Custom",
|
|
21672
|
+
"HasStorage",
|
|
21673
|
+
"AccessControl",
|
|
21674
|
+
"RawDocComment"
|
|
21675
|
+
],
|
|
21676
|
+
"hasStorage": true,
|
|
21677
|
+
"accessors": [
|
|
21678
|
+
{
|
|
21679
|
+
"kind": "Accessor",
|
|
21680
|
+
"name": "Get",
|
|
21681
|
+
"printedName": "Get()",
|
|
21682
|
+
"children": [
|
|
21683
|
+
{
|
|
21684
|
+
"kind": "TypeNominal",
|
|
21685
|
+
"name": "Optional",
|
|
21686
|
+
"printedName": "((ShortKitSDK.ShortKitFeedViewController.VideoCarouselCellLongPressPayload) -> ())?",
|
|
21687
|
+
"children": [
|
|
21688
|
+
{
|
|
21689
|
+
"kind": "TypeFunc",
|
|
21690
|
+
"name": "Function",
|
|
21691
|
+
"printedName": "(ShortKitSDK.ShortKitFeedViewController.VideoCarouselCellLongPressPayload) -> ()",
|
|
21692
|
+
"children": [
|
|
21693
|
+
{
|
|
21694
|
+
"kind": "TypeNominal",
|
|
21695
|
+
"name": "Void",
|
|
21696
|
+
"printedName": "()"
|
|
21697
|
+
},
|
|
21698
|
+
{
|
|
21699
|
+
"kind": "TypeNominal",
|
|
21700
|
+
"name": "VideoCarouselCellLongPressPayload",
|
|
21701
|
+
"printedName": "ShortKitSDK.ShortKitFeedViewController.VideoCarouselCellLongPressPayload",
|
|
21702
|
+
"usr": "s:11ShortKitSDK0aB18FeedViewControllerC33VideoCarouselCellLongPressPayloadV"
|
|
21703
|
+
}
|
|
21704
|
+
]
|
|
21705
|
+
}
|
|
21706
|
+
],
|
|
21707
|
+
"usr": "s:Sq"
|
|
21708
|
+
}
|
|
21709
|
+
],
|
|
21710
|
+
"declKind": "Accessor",
|
|
21711
|
+
"usr": "s:11ShortKitSDK0aB18FeedViewControllerC28onVideoCarouselCellLongPressyAC0hijkL7PayloadVcSgvg",
|
|
21712
|
+
"mangledName": "$s11ShortKitSDK0aB18FeedViewControllerC28onVideoCarouselCellLongPressyAC0hijkL7PayloadVcSgvg",
|
|
21713
|
+
"moduleName": "ShortKitSDK",
|
|
21714
|
+
"implicit": true,
|
|
21715
|
+
"accessorKind": "get"
|
|
21716
|
+
},
|
|
21717
|
+
{
|
|
21718
|
+
"kind": "Accessor",
|
|
21719
|
+
"name": "Set",
|
|
21720
|
+
"printedName": "Set()",
|
|
21721
|
+
"children": [
|
|
21722
|
+
{
|
|
21723
|
+
"kind": "TypeNominal",
|
|
21724
|
+
"name": "Void",
|
|
21725
|
+
"printedName": "()"
|
|
21726
|
+
},
|
|
21727
|
+
{
|
|
21728
|
+
"kind": "TypeNominal",
|
|
21729
|
+
"name": "Optional",
|
|
21730
|
+
"printedName": "((ShortKitSDK.ShortKitFeedViewController.VideoCarouselCellLongPressPayload) -> ())?",
|
|
21731
|
+
"children": [
|
|
21732
|
+
{
|
|
21733
|
+
"kind": "TypeFunc",
|
|
21734
|
+
"name": "Function",
|
|
21735
|
+
"printedName": "(ShortKitSDK.ShortKitFeedViewController.VideoCarouselCellLongPressPayload) -> ()",
|
|
21736
|
+
"children": [
|
|
21737
|
+
{
|
|
21738
|
+
"kind": "TypeNominal",
|
|
21739
|
+
"name": "Void",
|
|
21740
|
+
"printedName": "()"
|
|
21741
|
+
},
|
|
21742
|
+
{
|
|
21743
|
+
"kind": "TypeNominal",
|
|
21744
|
+
"name": "VideoCarouselCellLongPressPayload",
|
|
21745
|
+
"printedName": "ShortKitSDK.ShortKitFeedViewController.VideoCarouselCellLongPressPayload",
|
|
21746
|
+
"usr": "s:11ShortKitSDK0aB18FeedViewControllerC33VideoCarouselCellLongPressPayloadV"
|
|
21747
|
+
}
|
|
21748
|
+
]
|
|
21749
|
+
}
|
|
21750
|
+
],
|
|
21751
|
+
"usr": "s:Sq"
|
|
21752
|
+
}
|
|
21753
|
+
],
|
|
21754
|
+
"declKind": "Accessor",
|
|
21755
|
+
"usr": "s:11ShortKitSDK0aB18FeedViewControllerC28onVideoCarouselCellLongPressyAC0hijkL7PayloadVcSgvs",
|
|
21756
|
+
"mangledName": "$s11ShortKitSDK0aB18FeedViewControllerC28onVideoCarouselCellLongPressyAC0hijkL7PayloadVcSgvs",
|
|
21757
|
+
"moduleName": "ShortKitSDK",
|
|
21758
|
+
"implicit": true,
|
|
21759
|
+
"accessorKind": "set"
|
|
21760
|
+
},
|
|
21761
|
+
{
|
|
21762
|
+
"kind": "Accessor",
|
|
21763
|
+
"name": "Modify",
|
|
21764
|
+
"printedName": "Modify()",
|
|
21765
|
+
"children": [
|
|
21766
|
+
{
|
|
21767
|
+
"kind": "TypeNominal",
|
|
21768
|
+
"name": "Void",
|
|
21769
|
+
"printedName": "()"
|
|
21770
|
+
}
|
|
21771
|
+
],
|
|
21772
|
+
"declKind": "Accessor",
|
|
21773
|
+
"usr": "s:11ShortKitSDK0aB18FeedViewControllerC28onVideoCarouselCellLongPressyAC0hijkL7PayloadVcSgvM",
|
|
21774
|
+
"mangledName": "$s11ShortKitSDK0aB18FeedViewControllerC28onVideoCarouselCellLongPressyAC0hijkL7PayloadVcSgvM",
|
|
21775
|
+
"moduleName": "ShortKitSDK",
|
|
21776
|
+
"implicit": true,
|
|
21777
|
+
"accessorKind": "_modify"
|
|
21778
|
+
}
|
|
21779
|
+
]
|
|
21780
|
+
},
|
|
21174
21781
|
{
|
|
21175
21782
|
"kind": "Var",
|
|
21176
21783
|
"name": "onRefreshStateChanged",
|
|
@@ -34015,6 +34622,67 @@
|
|
|
34015
34622
|
}
|
|
34016
34623
|
]
|
|
34017
34624
|
},
|
|
34625
|
+
{
|
|
34626
|
+
"kind": "Var",
|
|
34627
|
+
"name": "initialPageIndex",
|
|
34628
|
+
"printedName": "initialPageIndex",
|
|
34629
|
+
"children": [
|
|
34630
|
+
{
|
|
34631
|
+
"kind": "TypeNominal",
|
|
34632
|
+
"name": "Optional",
|
|
34633
|
+
"printedName": "Swift.Int?",
|
|
34634
|
+
"children": [
|
|
34635
|
+
{
|
|
34636
|
+
"kind": "TypeNominal",
|
|
34637
|
+
"name": "Int",
|
|
34638
|
+
"printedName": "Swift.Int",
|
|
34639
|
+
"usr": "s:Si"
|
|
34640
|
+
}
|
|
34641
|
+
],
|
|
34642
|
+
"usr": "s:Sq"
|
|
34643
|
+
}
|
|
34644
|
+
],
|
|
34645
|
+
"declKind": "Var",
|
|
34646
|
+
"usr": "s:11ShortKitSDK18VideoCarouselInputV16initialPageIndexSiSgvp",
|
|
34647
|
+
"mangledName": "$s11ShortKitSDK18VideoCarouselInputV16initialPageIndexSiSgvp",
|
|
34648
|
+
"moduleName": "ShortKitSDK",
|
|
34649
|
+
"declAttributes": [
|
|
34650
|
+
"HasStorage",
|
|
34651
|
+
"AccessControl",
|
|
34652
|
+
"RawDocComment"
|
|
34653
|
+
],
|
|
34654
|
+
"isLet": true,
|
|
34655
|
+
"hasStorage": true,
|
|
34656
|
+
"accessors": [
|
|
34657
|
+
{
|
|
34658
|
+
"kind": "Accessor",
|
|
34659
|
+
"name": "Get",
|
|
34660
|
+
"printedName": "Get()",
|
|
34661
|
+
"children": [
|
|
34662
|
+
{
|
|
34663
|
+
"kind": "TypeNominal",
|
|
34664
|
+
"name": "Optional",
|
|
34665
|
+
"printedName": "Swift.Int?",
|
|
34666
|
+
"children": [
|
|
34667
|
+
{
|
|
34668
|
+
"kind": "TypeNominal",
|
|
34669
|
+
"name": "Int",
|
|
34670
|
+
"printedName": "Swift.Int",
|
|
34671
|
+
"usr": "s:Si"
|
|
34672
|
+
}
|
|
34673
|
+
],
|
|
34674
|
+
"usr": "s:Sq"
|
|
34675
|
+
}
|
|
34676
|
+
],
|
|
34677
|
+
"declKind": "Accessor",
|
|
34678
|
+
"usr": "s:11ShortKitSDK18VideoCarouselInputV16initialPageIndexSiSgvg",
|
|
34679
|
+
"mangledName": "$s11ShortKitSDK18VideoCarouselInputV16initialPageIndexSiSgvg",
|
|
34680
|
+
"moduleName": "ShortKitSDK",
|
|
34681
|
+
"implicit": true,
|
|
34682
|
+
"accessorKind": "get"
|
|
34683
|
+
}
|
|
34684
|
+
]
|
|
34685
|
+
},
|
|
34018
34686
|
{
|
|
34019
34687
|
"kind": "Var",
|
|
34020
34688
|
"name": "title",
|
|
@@ -34318,7 +34986,7 @@
|
|
|
34318
34986
|
{
|
|
34319
34987
|
"kind": "Constructor",
|
|
34320
34988
|
"name": "init",
|
|
34321
|
-
"printedName": "init(id:videos:title:description:author:section:articleUrl:)",
|
|
34989
|
+
"printedName": "init(id:videos:initialPageIndex:title:description:author:section:articleUrl:)",
|
|
34322
34990
|
"children": [
|
|
34323
34991
|
{
|
|
34324
34992
|
"kind": "TypeNominal",
|
|
@@ -34346,6 +35014,21 @@
|
|
|
34346
35014
|
],
|
|
34347
35015
|
"usr": "s:Sa"
|
|
34348
35016
|
},
|
|
35017
|
+
{
|
|
35018
|
+
"kind": "TypeNominal",
|
|
35019
|
+
"name": "Optional",
|
|
35020
|
+
"printedName": "Swift.Int?",
|
|
35021
|
+
"children": [
|
|
35022
|
+
{
|
|
35023
|
+
"kind": "TypeNominal",
|
|
35024
|
+
"name": "Int",
|
|
35025
|
+
"printedName": "Swift.Int",
|
|
35026
|
+
"usr": "s:Si"
|
|
35027
|
+
}
|
|
35028
|
+
],
|
|
35029
|
+
"hasDefaultArg": true,
|
|
35030
|
+
"usr": "s:Sq"
|
|
35031
|
+
},
|
|
34349
35032
|
{
|
|
34350
35033
|
"kind": "TypeNominal",
|
|
34351
35034
|
"name": "Optional",
|
|
@@ -34423,8 +35106,8 @@
|
|
|
34423
35106
|
}
|
|
34424
35107
|
],
|
|
34425
35108
|
"declKind": "Constructor",
|
|
34426
|
-
"usr": "s:
|
|
34427
|
-
"mangledName": "$
|
|
35109
|
+
"usr": "s:11ShortKitSDK18VideoCarouselInputV2id6videos16initialPageIndex5title11description6author7section10articleUrlACSS_SayAA0dedF0VGSiSgSSSgA4Ptcfc",
|
|
35110
|
+
"mangledName": "$s11ShortKitSDK18VideoCarouselInputV2id6videos16initialPageIndex5title11description6author7section10articleUrlACSS_SayAA0dedF0VGSiSgSSSgA4Ptcfc",
|
|
34428
35111
|
"moduleName": "ShortKitSDK",
|
|
34429
35112
|
"declAttributes": [
|
|
34430
35113
|
"AccessControl"
|
|
@@ -34691,6 +35374,66 @@
|
|
|
34691
35374
|
}
|
|
34692
35375
|
]
|
|
34693
35376
|
},
|
|
35377
|
+
{
|
|
35378
|
+
"kind": "Var",
|
|
35379
|
+
"name": "initialPageIndex",
|
|
35380
|
+
"printedName": "initialPageIndex",
|
|
35381
|
+
"children": [
|
|
35382
|
+
{
|
|
35383
|
+
"kind": "TypeNominal",
|
|
35384
|
+
"name": "Optional",
|
|
35385
|
+
"printedName": "Swift.Int?",
|
|
35386
|
+
"children": [
|
|
35387
|
+
{
|
|
35388
|
+
"kind": "TypeNominal",
|
|
35389
|
+
"name": "Int",
|
|
35390
|
+
"printedName": "Swift.Int",
|
|
35391
|
+
"usr": "s:Si"
|
|
35392
|
+
}
|
|
35393
|
+
],
|
|
35394
|
+
"usr": "s:Sq"
|
|
35395
|
+
}
|
|
35396
|
+
],
|
|
35397
|
+
"declKind": "Var",
|
|
35398
|
+
"usr": "s:11ShortKitSDK17VideoCarouselItemV16initialPageIndexSiSgvp",
|
|
35399
|
+
"mangledName": "$s11ShortKitSDK17VideoCarouselItemV16initialPageIndexSiSgvp",
|
|
35400
|
+
"moduleName": "ShortKitSDK",
|
|
35401
|
+
"declAttributes": [
|
|
35402
|
+
"HasStorage",
|
|
35403
|
+
"AccessControl"
|
|
35404
|
+
],
|
|
35405
|
+
"isLet": true,
|
|
35406
|
+
"hasStorage": true,
|
|
35407
|
+
"accessors": [
|
|
35408
|
+
{
|
|
35409
|
+
"kind": "Accessor",
|
|
35410
|
+
"name": "Get",
|
|
35411
|
+
"printedName": "Get()",
|
|
35412
|
+
"children": [
|
|
35413
|
+
{
|
|
35414
|
+
"kind": "TypeNominal",
|
|
35415
|
+
"name": "Optional",
|
|
35416
|
+
"printedName": "Swift.Int?",
|
|
35417
|
+
"children": [
|
|
35418
|
+
{
|
|
35419
|
+
"kind": "TypeNominal",
|
|
35420
|
+
"name": "Int",
|
|
35421
|
+
"printedName": "Swift.Int",
|
|
35422
|
+
"usr": "s:Si"
|
|
35423
|
+
}
|
|
35424
|
+
],
|
|
35425
|
+
"usr": "s:Sq"
|
|
35426
|
+
}
|
|
35427
|
+
],
|
|
35428
|
+
"declKind": "Accessor",
|
|
35429
|
+
"usr": "s:11ShortKitSDK17VideoCarouselItemV16initialPageIndexSiSgvg",
|
|
35430
|
+
"mangledName": "$s11ShortKitSDK17VideoCarouselItemV16initialPageIndexSiSgvg",
|
|
35431
|
+
"moduleName": "ShortKitSDK",
|
|
35432
|
+
"implicit": true,
|
|
35433
|
+
"accessorKind": "get"
|
|
35434
|
+
}
|
|
35435
|
+
]
|
|
35436
|
+
},
|
|
34694
35437
|
{
|
|
34695
35438
|
"kind": "Var",
|
|
34696
35439
|
"name": "title",
|
|
@@ -34994,7 +35737,7 @@
|
|
|
34994
35737
|
{
|
|
34995
35738
|
"kind": "Constructor",
|
|
34996
35739
|
"name": "init",
|
|
34997
|
-
"printedName": "init(id:videos:title:description:author:section:articleUrl:)",
|
|
35740
|
+
"printedName": "init(id:videos:initialPageIndex:title:description:author:section:articleUrl:)",
|
|
34998
35741
|
"children": [
|
|
34999
35742
|
{
|
|
35000
35743
|
"kind": "TypeNominal",
|
|
@@ -35022,6 +35765,21 @@
|
|
|
35022
35765
|
],
|
|
35023
35766
|
"usr": "s:Sa"
|
|
35024
35767
|
},
|
|
35768
|
+
{
|
|
35769
|
+
"kind": "TypeNominal",
|
|
35770
|
+
"name": "Optional",
|
|
35771
|
+
"printedName": "Swift.Int?",
|
|
35772
|
+
"children": [
|
|
35773
|
+
{
|
|
35774
|
+
"kind": "TypeNominal",
|
|
35775
|
+
"name": "Int",
|
|
35776
|
+
"printedName": "Swift.Int",
|
|
35777
|
+
"usr": "s:Si"
|
|
35778
|
+
}
|
|
35779
|
+
],
|
|
35780
|
+
"hasDefaultArg": true,
|
|
35781
|
+
"usr": "s:Sq"
|
|
35782
|
+
},
|
|
35025
35783
|
{
|
|
35026
35784
|
"kind": "TypeNominal",
|
|
35027
35785
|
"name": "Optional",
|
|
@@ -35099,14 +35857,55 @@
|
|
|
35099
35857
|
}
|
|
35100
35858
|
],
|
|
35101
35859
|
"declKind": "Constructor",
|
|
35102
|
-
"usr": "s:
|
|
35103
|
-
"mangledName": "$
|
|
35860
|
+
"usr": "s:11ShortKitSDK17VideoCarouselItemV2id6videos16initialPageIndex5title11description6author7section10articleUrlACSS_SayAA07ContentF0VGSiSgSSSgA4Ptcfc",
|
|
35861
|
+
"mangledName": "$s11ShortKitSDK17VideoCarouselItemV2id6videos16initialPageIndex5title11description6author7section10articleUrlACSS_SayAA07ContentF0VGSiSgSSSgA4Ptcfc",
|
|
35104
35862
|
"moduleName": "ShortKitSDK",
|
|
35105
35863
|
"declAttributes": [
|
|
35106
35864
|
"AccessControl"
|
|
35107
35865
|
],
|
|
35108
35866
|
"init_kind": "Designated"
|
|
35109
35867
|
},
|
|
35868
|
+
{
|
|
35869
|
+
"kind": "Var",
|
|
35870
|
+
"name": "clampedInitialPageIndex",
|
|
35871
|
+
"printedName": "clampedInitialPageIndex",
|
|
35872
|
+
"children": [
|
|
35873
|
+
{
|
|
35874
|
+
"kind": "TypeNominal",
|
|
35875
|
+
"name": "Int",
|
|
35876
|
+
"printedName": "Swift.Int",
|
|
35877
|
+
"usr": "s:Si"
|
|
35878
|
+
}
|
|
35879
|
+
],
|
|
35880
|
+
"declKind": "Var",
|
|
35881
|
+
"usr": "s:11ShortKitSDK17VideoCarouselItemV23clampedInitialPageIndexSivp",
|
|
35882
|
+
"mangledName": "$s11ShortKitSDK17VideoCarouselItemV23clampedInitialPageIndexSivp",
|
|
35883
|
+
"moduleName": "ShortKitSDK",
|
|
35884
|
+
"declAttributes": [
|
|
35885
|
+
"AccessControl",
|
|
35886
|
+
"RawDocComment"
|
|
35887
|
+
],
|
|
35888
|
+
"accessors": [
|
|
35889
|
+
{
|
|
35890
|
+
"kind": "Accessor",
|
|
35891
|
+
"name": "Get",
|
|
35892
|
+
"printedName": "Get()",
|
|
35893
|
+
"children": [
|
|
35894
|
+
{
|
|
35895
|
+
"kind": "TypeNominal",
|
|
35896
|
+
"name": "Int",
|
|
35897
|
+
"printedName": "Swift.Int",
|
|
35898
|
+
"usr": "s:Si"
|
|
35899
|
+
}
|
|
35900
|
+
],
|
|
35901
|
+
"declKind": "Accessor",
|
|
35902
|
+
"usr": "s:11ShortKitSDK17VideoCarouselItemV23clampedInitialPageIndexSivg",
|
|
35903
|
+
"mangledName": "$s11ShortKitSDK17VideoCarouselItemV23clampedInitialPageIndexSivg",
|
|
35904
|
+
"moduleName": "ShortKitSDK",
|
|
35905
|
+
"accessorKind": "get"
|
|
35906
|
+
}
|
|
35907
|
+
]
|
|
35908
|
+
},
|
|
35110
35909
|
{
|
|
35111
35910
|
"kind": "Constructor",
|
|
35112
35911
|
"name": "init",
|
|
@@ -42719,6 +43518,34 @@
|
|
|
42719
43518
|
],
|
|
42720
43519
|
"funcSelfKind": "NonMutating"
|
|
42721
43520
|
},
|
|
43521
|
+
{
|
|
43522
|
+
"kind": "Function",
|
|
43523
|
+
"name": "setFeedScrollEnabled",
|
|
43524
|
+
"printedName": "setFeedScrollEnabled(_:)",
|
|
43525
|
+
"children": [
|
|
43526
|
+
{
|
|
43527
|
+
"kind": "TypeNominal",
|
|
43528
|
+
"name": "Void",
|
|
43529
|
+
"printedName": "()"
|
|
43530
|
+
},
|
|
43531
|
+
{
|
|
43532
|
+
"kind": "TypeNominal",
|
|
43533
|
+
"name": "Bool",
|
|
43534
|
+
"printedName": "Swift.Bool",
|
|
43535
|
+
"usr": "s:Sb"
|
|
43536
|
+
}
|
|
43537
|
+
],
|
|
43538
|
+
"declKind": "Func",
|
|
43539
|
+
"usr": "s:11ShortKitSDK0aB6PlayerC20setFeedScrollEnabledyySbF",
|
|
43540
|
+
"mangledName": "$s11ShortKitSDK0aB6PlayerC20setFeedScrollEnabledyySbF",
|
|
43541
|
+
"moduleName": "ShortKitSDK",
|
|
43542
|
+
"declAttributes": [
|
|
43543
|
+
"Final",
|
|
43544
|
+
"AccessControl",
|
|
43545
|
+
"RawDocComment"
|
|
43546
|
+
],
|
|
43547
|
+
"funcSelfKind": "NonMutating"
|
|
43548
|
+
},
|
|
42722
43549
|
{
|
|
42723
43550
|
"kind": "Function",
|
|
42724
43551
|
"name": "dismissLiveRoom",
|
|
@@ -47794,8 +48621,180 @@
|
|
|
47794
48621
|
}
|
|
47795
48622
|
],
|
|
47796
48623
|
"declKind": "Accessor",
|
|
47797
|
-
"usr": "s:11ShortKitSDK0aB20WidgetViewControllerC9onCardTapySS_SitcSgvg",
|
|
47798
|
-
"mangledName": "$s11ShortKitSDK0aB20WidgetViewControllerC9onCardTapySS_SitcSgvg",
|
|
48624
|
+
"usr": "s:11ShortKitSDK0aB20WidgetViewControllerC9onCardTapySS_SitcSgvg",
|
|
48625
|
+
"mangledName": "$s11ShortKitSDK0aB20WidgetViewControllerC9onCardTapySS_SitcSgvg",
|
|
48626
|
+
"moduleName": "ShortKitSDK",
|
|
48627
|
+
"implicit": true,
|
|
48628
|
+
"declAttributes": [
|
|
48629
|
+
"Final"
|
|
48630
|
+
],
|
|
48631
|
+
"accessorKind": "get"
|
|
48632
|
+
},
|
|
48633
|
+
{
|
|
48634
|
+
"kind": "Accessor",
|
|
48635
|
+
"name": "Set",
|
|
48636
|
+
"printedName": "Set()",
|
|
48637
|
+
"children": [
|
|
48638
|
+
{
|
|
48639
|
+
"kind": "TypeNominal",
|
|
48640
|
+
"name": "Void",
|
|
48641
|
+
"printedName": "()"
|
|
48642
|
+
},
|
|
48643
|
+
{
|
|
48644
|
+
"kind": "TypeNominal",
|
|
48645
|
+
"name": "Optional",
|
|
48646
|
+
"printedName": "((Swift.String, Swift.Int) -> ())?",
|
|
48647
|
+
"children": [
|
|
48648
|
+
{
|
|
48649
|
+
"kind": "TypeFunc",
|
|
48650
|
+
"name": "Function",
|
|
48651
|
+
"printedName": "(Swift.String, Swift.Int) -> ()",
|
|
48652
|
+
"children": [
|
|
48653
|
+
{
|
|
48654
|
+
"kind": "TypeNominal",
|
|
48655
|
+
"name": "Void",
|
|
48656
|
+
"printedName": "()"
|
|
48657
|
+
},
|
|
48658
|
+
{
|
|
48659
|
+
"kind": "TypeNominal",
|
|
48660
|
+
"name": "Tuple",
|
|
48661
|
+
"printedName": "(Swift.String, Swift.Int)",
|
|
48662
|
+
"children": [
|
|
48663
|
+
{
|
|
48664
|
+
"kind": "TypeNominal",
|
|
48665
|
+
"name": "String",
|
|
48666
|
+
"printedName": "Swift.String",
|
|
48667
|
+
"usr": "s:SS"
|
|
48668
|
+
},
|
|
48669
|
+
{
|
|
48670
|
+
"kind": "TypeNominal",
|
|
48671
|
+
"name": "Int",
|
|
48672
|
+
"printedName": "Swift.Int",
|
|
48673
|
+
"usr": "s:Si"
|
|
48674
|
+
}
|
|
48675
|
+
]
|
|
48676
|
+
}
|
|
48677
|
+
]
|
|
48678
|
+
}
|
|
48679
|
+
],
|
|
48680
|
+
"usr": "s:Sq"
|
|
48681
|
+
}
|
|
48682
|
+
],
|
|
48683
|
+
"declKind": "Accessor",
|
|
48684
|
+
"usr": "s:11ShortKitSDK0aB20WidgetViewControllerC9onCardTapySS_SitcSgvs",
|
|
48685
|
+
"mangledName": "$s11ShortKitSDK0aB20WidgetViewControllerC9onCardTapySS_SitcSgvs",
|
|
48686
|
+
"moduleName": "ShortKitSDK",
|
|
48687
|
+
"implicit": true,
|
|
48688
|
+
"declAttributes": [
|
|
48689
|
+
"Final"
|
|
48690
|
+
],
|
|
48691
|
+
"accessorKind": "set"
|
|
48692
|
+
},
|
|
48693
|
+
{
|
|
48694
|
+
"kind": "Accessor",
|
|
48695
|
+
"name": "Modify",
|
|
48696
|
+
"printedName": "Modify()",
|
|
48697
|
+
"children": [
|
|
48698
|
+
{
|
|
48699
|
+
"kind": "TypeNominal",
|
|
48700
|
+
"name": "Void",
|
|
48701
|
+
"printedName": "()"
|
|
48702
|
+
}
|
|
48703
|
+
],
|
|
48704
|
+
"declKind": "Accessor",
|
|
48705
|
+
"usr": "s:11ShortKitSDK0aB20WidgetViewControllerC9onCardTapySS_SitcSgvM",
|
|
48706
|
+
"mangledName": "$s11ShortKitSDK0aB20WidgetViewControllerC9onCardTapySS_SitcSgvM",
|
|
48707
|
+
"moduleName": "ShortKitSDK",
|
|
48708
|
+
"implicit": true,
|
|
48709
|
+
"declAttributes": [
|
|
48710
|
+
"Final"
|
|
48711
|
+
],
|
|
48712
|
+
"accessorKind": "_modify"
|
|
48713
|
+
}
|
|
48714
|
+
]
|
|
48715
|
+
},
|
|
48716
|
+
{
|
|
48717
|
+
"kind": "Var",
|
|
48718
|
+
"name": "onModalFeedPresented",
|
|
48719
|
+
"printedName": "onModalFeedPresented",
|
|
48720
|
+
"children": [
|
|
48721
|
+
{
|
|
48722
|
+
"kind": "TypeNominal",
|
|
48723
|
+
"name": "Optional",
|
|
48724
|
+
"printedName": "((ShortKitSDK.ShortKitFeedViewController) -> ())?",
|
|
48725
|
+
"children": [
|
|
48726
|
+
{
|
|
48727
|
+
"kind": "TypeFunc",
|
|
48728
|
+
"name": "Function",
|
|
48729
|
+
"printedName": "(ShortKitSDK.ShortKitFeedViewController) -> ()",
|
|
48730
|
+
"children": [
|
|
48731
|
+
{
|
|
48732
|
+
"kind": "TypeNominal",
|
|
48733
|
+
"name": "Void",
|
|
48734
|
+
"printedName": "()"
|
|
48735
|
+
},
|
|
48736
|
+
{
|
|
48737
|
+
"kind": "TypeNominal",
|
|
48738
|
+
"name": "ShortKitFeedViewController",
|
|
48739
|
+
"printedName": "ShortKitSDK.ShortKitFeedViewController",
|
|
48740
|
+
"usr": "c:@M@ShortKitSDK@objc(cs)ShortKitFeedViewController"
|
|
48741
|
+
}
|
|
48742
|
+
]
|
|
48743
|
+
}
|
|
48744
|
+
],
|
|
48745
|
+
"usr": "s:Sq"
|
|
48746
|
+
}
|
|
48747
|
+
],
|
|
48748
|
+
"declKind": "Var",
|
|
48749
|
+
"usr": "s:11ShortKitSDK0aB20WidgetViewControllerC20onModalFeedPresentedyAA0abieF0CcSgvp",
|
|
48750
|
+
"mangledName": "$s11ShortKitSDK0aB20WidgetViewControllerC20onModalFeedPresentedyAA0abieF0CcSgvp",
|
|
48751
|
+
"moduleName": "ShortKitSDK",
|
|
48752
|
+
"declAttributes": [
|
|
48753
|
+
"HasInitialValue",
|
|
48754
|
+
"Final",
|
|
48755
|
+
"Preconcurrency",
|
|
48756
|
+
"Custom",
|
|
48757
|
+
"HasStorage",
|
|
48758
|
+
"AccessControl",
|
|
48759
|
+
"RawDocComment"
|
|
48760
|
+
],
|
|
48761
|
+
"hasStorage": true,
|
|
48762
|
+
"accessors": [
|
|
48763
|
+
{
|
|
48764
|
+
"kind": "Accessor",
|
|
48765
|
+
"name": "Get",
|
|
48766
|
+
"printedName": "Get()",
|
|
48767
|
+
"children": [
|
|
48768
|
+
{
|
|
48769
|
+
"kind": "TypeNominal",
|
|
48770
|
+
"name": "Optional",
|
|
48771
|
+
"printedName": "((ShortKitSDK.ShortKitFeedViewController) -> ())?",
|
|
48772
|
+
"children": [
|
|
48773
|
+
{
|
|
48774
|
+
"kind": "TypeFunc",
|
|
48775
|
+
"name": "Function",
|
|
48776
|
+
"printedName": "(ShortKitSDK.ShortKitFeedViewController) -> ()",
|
|
48777
|
+
"children": [
|
|
48778
|
+
{
|
|
48779
|
+
"kind": "TypeNominal",
|
|
48780
|
+
"name": "Void",
|
|
48781
|
+
"printedName": "()"
|
|
48782
|
+
},
|
|
48783
|
+
{
|
|
48784
|
+
"kind": "TypeNominal",
|
|
48785
|
+
"name": "ShortKitFeedViewController",
|
|
48786
|
+
"printedName": "ShortKitSDK.ShortKitFeedViewController",
|
|
48787
|
+
"usr": "c:@M@ShortKitSDK@objc(cs)ShortKitFeedViewController"
|
|
48788
|
+
}
|
|
48789
|
+
]
|
|
48790
|
+
}
|
|
48791
|
+
],
|
|
48792
|
+
"usr": "s:Sq"
|
|
48793
|
+
}
|
|
48794
|
+
],
|
|
48795
|
+
"declKind": "Accessor",
|
|
48796
|
+
"usr": "s:11ShortKitSDK0aB20WidgetViewControllerC20onModalFeedPresentedyAA0abieF0CcSgvg",
|
|
48797
|
+
"mangledName": "$s11ShortKitSDK0aB20WidgetViewControllerC20onModalFeedPresentedyAA0abieF0CcSgvg",
|
|
47799
48798
|
"moduleName": "ShortKitSDK",
|
|
47800
48799
|
"implicit": true,
|
|
47801
48800
|
"declAttributes": [
|
|
@@ -47816,12 +48815,12 @@
|
|
|
47816
48815
|
{
|
|
47817
48816
|
"kind": "TypeNominal",
|
|
47818
48817
|
"name": "Optional",
|
|
47819
|
-
"printedName": "((
|
|
48818
|
+
"printedName": "((ShortKitSDK.ShortKitFeedViewController) -> ())?",
|
|
47820
48819
|
"children": [
|
|
47821
48820
|
{
|
|
47822
48821
|
"kind": "TypeFunc",
|
|
47823
48822
|
"name": "Function",
|
|
47824
|
-
"printedName": "(
|
|
48823
|
+
"printedName": "(ShortKitSDK.ShortKitFeedViewController) -> ()",
|
|
47825
48824
|
"children": [
|
|
47826
48825
|
{
|
|
47827
48826
|
"kind": "TypeNominal",
|
|
@@ -47830,22 +48829,9 @@
|
|
|
47830
48829
|
},
|
|
47831
48830
|
{
|
|
47832
48831
|
"kind": "TypeNominal",
|
|
47833
|
-
"name": "
|
|
47834
|
-
"printedName": "
|
|
47835
|
-
"
|
|
47836
|
-
{
|
|
47837
|
-
"kind": "TypeNominal",
|
|
47838
|
-
"name": "String",
|
|
47839
|
-
"printedName": "Swift.String",
|
|
47840
|
-
"usr": "s:SS"
|
|
47841
|
-
},
|
|
47842
|
-
{
|
|
47843
|
-
"kind": "TypeNominal",
|
|
47844
|
-
"name": "Int",
|
|
47845
|
-
"printedName": "Swift.Int",
|
|
47846
|
-
"usr": "s:Si"
|
|
47847
|
-
}
|
|
47848
|
-
]
|
|
48832
|
+
"name": "ShortKitFeedViewController",
|
|
48833
|
+
"printedName": "ShortKitSDK.ShortKitFeedViewController",
|
|
48834
|
+
"usr": "c:@M@ShortKitSDK@objc(cs)ShortKitFeedViewController"
|
|
47849
48835
|
}
|
|
47850
48836
|
]
|
|
47851
48837
|
}
|
|
@@ -47854,8 +48840,8 @@
|
|
|
47854
48840
|
}
|
|
47855
48841
|
],
|
|
47856
48842
|
"declKind": "Accessor",
|
|
47857
|
-
"usr": "s:
|
|
47858
|
-
"mangledName": "$
|
|
48843
|
+
"usr": "s:11ShortKitSDK0aB20WidgetViewControllerC20onModalFeedPresentedyAA0abieF0CcSgvs",
|
|
48844
|
+
"mangledName": "$s11ShortKitSDK0aB20WidgetViewControllerC20onModalFeedPresentedyAA0abieF0CcSgvs",
|
|
47859
48845
|
"moduleName": "ShortKitSDK",
|
|
47860
48846
|
"implicit": true,
|
|
47861
48847
|
"declAttributes": [
|
|
@@ -47875,8 +48861,164 @@
|
|
|
47875
48861
|
}
|
|
47876
48862
|
],
|
|
47877
48863
|
"declKind": "Accessor",
|
|
47878
|
-
"usr": "s:
|
|
47879
|
-
"mangledName": "$
|
|
48864
|
+
"usr": "s:11ShortKitSDK0aB20WidgetViewControllerC20onModalFeedPresentedyAA0abieF0CcSgvM",
|
|
48865
|
+
"mangledName": "$s11ShortKitSDK0aB20WidgetViewControllerC20onModalFeedPresentedyAA0abieF0CcSgvM",
|
|
48866
|
+
"moduleName": "ShortKitSDK",
|
|
48867
|
+
"implicit": true,
|
|
48868
|
+
"declAttributes": [
|
|
48869
|
+
"Final"
|
|
48870
|
+
],
|
|
48871
|
+
"accessorKind": "_modify"
|
|
48872
|
+
}
|
|
48873
|
+
]
|
|
48874
|
+
},
|
|
48875
|
+
{
|
|
48876
|
+
"kind": "Var",
|
|
48877
|
+
"name": "onModalFeedDismissed",
|
|
48878
|
+
"printedName": "onModalFeedDismissed",
|
|
48879
|
+
"children": [
|
|
48880
|
+
{
|
|
48881
|
+
"kind": "TypeNominal",
|
|
48882
|
+
"name": "Optional",
|
|
48883
|
+
"printedName": "(() -> ())?",
|
|
48884
|
+
"children": [
|
|
48885
|
+
{
|
|
48886
|
+
"kind": "TypeFunc",
|
|
48887
|
+
"name": "Function",
|
|
48888
|
+
"printedName": "() -> ()",
|
|
48889
|
+
"children": [
|
|
48890
|
+
{
|
|
48891
|
+
"kind": "TypeNominal",
|
|
48892
|
+
"name": "Void",
|
|
48893
|
+
"printedName": "()"
|
|
48894
|
+
},
|
|
48895
|
+
{
|
|
48896
|
+
"kind": "TypeNominal",
|
|
48897
|
+
"name": "Void",
|
|
48898
|
+
"printedName": "()"
|
|
48899
|
+
}
|
|
48900
|
+
]
|
|
48901
|
+
}
|
|
48902
|
+
],
|
|
48903
|
+
"usr": "s:Sq"
|
|
48904
|
+
}
|
|
48905
|
+
],
|
|
48906
|
+
"declKind": "Var",
|
|
48907
|
+
"usr": "s:11ShortKitSDK0aB20WidgetViewControllerC20onModalFeedDismissedyycSgvp",
|
|
48908
|
+
"mangledName": "$s11ShortKitSDK0aB20WidgetViewControllerC20onModalFeedDismissedyycSgvp",
|
|
48909
|
+
"moduleName": "ShortKitSDK",
|
|
48910
|
+
"declAttributes": [
|
|
48911
|
+
"HasInitialValue",
|
|
48912
|
+
"Final",
|
|
48913
|
+
"Preconcurrency",
|
|
48914
|
+
"Custom",
|
|
48915
|
+
"HasStorage",
|
|
48916
|
+
"AccessControl",
|
|
48917
|
+
"RawDocComment"
|
|
48918
|
+
],
|
|
48919
|
+
"hasStorage": true,
|
|
48920
|
+
"accessors": [
|
|
48921
|
+
{
|
|
48922
|
+
"kind": "Accessor",
|
|
48923
|
+
"name": "Get",
|
|
48924
|
+
"printedName": "Get()",
|
|
48925
|
+
"children": [
|
|
48926
|
+
{
|
|
48927
|
+
"kind": "TypeNominal",
|
|
48928
|
+
"name": "Optional",
|
|
48929
|
+
"printedName": "(() -> ())?",
|
|
48930
|
+
"children": [
|
|
48931
|
+
{
|
|
48932
|
+
"kind": "TypeFunc",
|
|
48933
|
+
"name": "Function",
|
|
48934
|
+
"printedName": "() -> ()",
|
|
48935
|
+
"children": [
|
|
48936
|
+
{
|
|
48937
|
+
"kind": "TypeNominal",
|
|
48938
|
+
"name": "Void",
|
|
48939
|
+
"printedName": "()"
|
|
48940
|
+
},
|
|
48941
|
+
{
|
|
48942
|
+
"kind": "TypeNominal",
|
|
48943
|
+
"name": "Void",
|
|
48944
|
+
"printedName": "()"
|
|
48945
|
+
}
|
|
48946
|
+
]
|
|
48947
|
+
}
|
|
48948
|
+
],
|
|
48949
|
+
"usr": "s:Sq"
|
|
48950
|
+
}
|
|
48951
|
+
],
|
|
48952
|
+
"declKind": "Accessor",
|
|
48953
|
+
"usr": "s:11ShortKitSDK0aB20WidgetViewControllerC20onModalFeedDismissedyycSgvg",
|
|
48954
|
+
"mangledName": "$s11ShortKitSDK0aB20WidgetViewControllerC20onModalFeedDismissedyycSgvg",
|
|
48955
|
+
"moduleName": "ShortKitSDK",
|
|
48956
|
+
"implicit": true,
|
|
48957
|
+
"declAttributes": [
|
|
48958
|
+
"Final"
|
|
48959
|
+
],
|
|
48960
|
+
"accessorKind": "get"
|
|
48961
|
+
},
|
|
48962
|
+
{
|
|
48963
|
+
"kind": "Accessor",
|
|
48964
|
+
"name": "Set",
|
|
48965
|
+
"printedName": "Set()",
|
|
48966
|
+
"children": [
|
|
48967
|
+
{
|
|
48968
|
+
"kind": "TypeNominal",
|
|
48969
|
+
"name": "Void",
|
|
48970
|
+
"printedName": "()"
|
|
48971
|
+
},
|
|
48972
|
+
{
|
|
48973
|
+
"kind": "TypeNominal",
|
|
48974
|
+
"name": "Optional",
|
|
48975
|
+
"printedName": "(() -> ())?",
|
|
48976
|
+
"children": [
|
|
48977
|
+
{
|
|
48978
|
+
"kind": "TypeFunc",
|
|
48979
|
+
"name": "Function",
|
|
48980
|
+
"printedName": "() -> ()",
|
|
48981
|
+
"children": [
|
|
48982
|
+
{
|
|
48983
|
+
"kind": "TypeNominal",
|
|
48984
|
+
"name": "Void",
|
|
48985
|
+
"printedName": "()"
|
|
48986
|
+
},
|
|
48987
|
+
{
|
|
48988
|
+
"kind": "TypeNominal",
|
|
48989
|
+
"name": "Void",
|
|
48990
|
+
"printedName": "()"
|
|
48991
|
+
}
|
|
48992
|
+
]
|
|
48993
|
+
}
|
|
48994
|
+
],
|
|
48995
|
+
"usr": "s:Sq"
|
|
48996
|
+
}
|
|
48997
|
+
],
|
|
48998
|
+
"declKind": "Accessor",
|
|
48999
|
+
"usr": "s:11ShortKitSDK0aB20WidgetViewControllerC20onModalFeedDismissedyycSgvs",
|
|
49000
|
+
"mangledName": "$s11ShortKitSDK0aB20WidgetViewControllerC20onModalFeedDismissedyycSgvs",
|
|
49001
|
+
"moduleName": "ShortKitSDK",
|
|
49002
|
+
"implicit": true,
|
|
49003
|
+
"declAttributes": [
|
|
49004
|
+
"Final"
|
|
49005
|
+
],
|
|
49006
|
+
"accessorKind": "set"
|
|
49007
|
+
},
|
|
49008
|
+
{
|
|
49009
|
+
"kind": "Accessor",
|
|
49010
|
+
"name": "Modify",
|
|
49011
|
+
"printedName": "Modify()",
|
|
49012
|
+
"children": [
|
|
49013
|
+
{
|
|
49014
|
+
"kind": "TypeNominal",
|
|
49015
|
+
"name": "Void",
|
|
49016
|
+
"printedName": "()"
|
|
49017
|
+
}
|
|
49018
|
+
],
|
|
49019
|
+
"declKind": "Accessor",
|
|
49020
|
+
"usr": "s:11ShortKitSDK0aB20WidgetViewControllerC20onModalFeedDismissedyycSgvM",
|
|
49021
|
+
"mangledName": "$s11ShortKitSDK0aB20WidgetViewControllerC20onModalFeedDismissedyycSgvM",
|
|
47880
49022
|
"moduleName": "ShortKitSDK",
|
|
47881
49023
|
"implicit": true,
|
|
47882
49024
|
"declAttributes": [
|
|
@@ -51281,203 +52423,210 @@
|
|
|
51281
52423
|
{
|
|
51282
52424
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
|
|
51283
52425
|
"kind": "BooleanLiteral",
|
|
51284
|
-
"offset":
|
|
52426
|
+
"offset": 1877,
|
|
51285
52427
|
"length": 5,
|
|
51286
52428
|
"value": "false"
|
|
51287
52429
|
},
|
|
51288
52430
|
{
|
|
51289
52431
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
|
|
51290
52432
|
"kind": "BooleanLiteral",
|
|
51291
|
-
"offset":
|
|
52433
|
+
"offset": 2149,
|
|
51292
52434
|
"length": 5,
|
|
51293
52435
|
"value": "false"
|
|
51294
52436
|
},
|
|
51295
52437
|
{
|
|
51296
52438
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
|
|
51297
52439
|
"kind": "BooleanLiteral",
|
|
51298
|
-
"offset":
|
|
52440
|
+
"offset": 2317,
|
|
51299
52441
|
"length": 5,
|
|
51300
52442
|
"value": "false"
|
|
51301
52443
|
},
|
|
51302
52444
|
{
|
|
51303
52445
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
|
|
51304
52446
|
"kind": "BooleanLiteral",
|
|
51305
|
-
"offset":
|
|
52447
|
+
"offset": 2434,
|
|
51306
52448
|
"length": 5,
|
|
51307
52449
|
"value": "false"
|
|
51308
52450
|
},
|
|
51309
52451
|
{
|
|
51310
52452
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
|
|
51311
52453
|
"kind": "BooleanLiteral",
|
|
51312
|
-
"offset":
|
|
52454
|
+
"offset": 4197,
|
|
51313
52455
|
"length": 5,
|
|
51314
52456
|
"value": "false"
|
|
51315
52457
|
},
|
|
51316
52458
|
{
|
|
51317
52459
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
|
|
51318
52460
|
"kind": "BooleanLiteral",
|
|
51319
|
-
"offset":
|
|
52461
|
+
"offset": 4746,
|
|
51320
52462
|
"length": 5,
|
|
51321
52463
|
"value": "false"
|
|
51322
52464
|
},
|
|
51323
52465
|
{
|
|
51324
52466
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
|
|
51325
52467
|
"kind": "BooleanLiteral",
|
|
51326
|
-
"offset":
|
|
52468
|
+
"offset": 4913,
|
|
51327
52469
|
"length": 4,
|
|
51328
52470
|
"value": "true"
|
|
51329
52471
|
},
|
|
51330
52472
|
{
|
|
51331
52473
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
|
|
51332
52474
|
"kind": "FloatLiteral",
|
|
51333
|
-
"offset":
|
|
52475
|
+
"offset": 4972,
|
|
51334
52476
|
"length": 3,
|
|
51335
52477
|
"value": "0.8"
|
|
51336
52478
|
},
|
|
51337
52479
|
{
|
|
51338
52480
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
|
|
51339
52481
|
"kind": "FloatLiteral",
|
|
51340
|
-
"offset":
|
|
52482
|
+
"offset": 4980,
|
|
51341
52483
|
"length": 3,
|
|
51342
52484
|
"value": "0.8"
|
|
51343
52485
|
},
|
|
51344
52486
|
{
|
|
51345
52487
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
|
|
51346
52488
|
"kind": "BooleanLiteral",
|
|
51347
|
-
"offset":
|
|
52489
|
+
"offset": 5045,
|
|
51348
52490
|
"length": 5,
|
|
51349
52491
|
"value": "false"
|
|
51350
52492
|
},
|
|
51351
52493
|
{
|
|
51352
52494
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
|
|
51353
52495
|
"kind": "BooleanLiteral",
|
|
51354
|
-
"offset":
|
|
52496
|
+
"offset": 10417,
|
|
51355
52497
|
"length": 5,
|
|
51356
52498
|
"value": "false"
|
|
51357
52499
|
},
|
|
52500
|
+
{
|
|
52501
|
+
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
|
|
52502
|
+
"kind": "Array",
|
|
52503
|
+
"offset": 11730,
|
|
52504
|
+
"length": 2,
|
|
52505
|
+
"value": "[]"
|
|
52506
|
+
},
|
|
51358
52507
|
{
|
|
51359
52508
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
|
|
51360
52509
|
"kind": "BooleanLiteral",
|
|
51361
|
-
"offset":
|
|
52510
|
+
"offset": 13006,
|
|
51362
52511
|
"length": 5,
|
|
51363
52512
|
"value": "false"
|
|
51364
52513
|
},
|
|
51365
52514
|
{
|
|
51366
52515
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
|
|
51367
52516
|
"kind": "IntegerLiteral",
|
|
51368
|
-
"offset":
|
|
52517
|
+
"offset": 13071,
|
|
51369
52518
|
"length": 1,
|
|
51370
52519
|
"value": "0"
|
|
51371
52520
|
},
|
|
51372
52521
|
{
|
|
51373
52522
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
|
|
51374
52523
|
"kind": "IntegerLiteral",
|
|
51375
|
-
"offset":
|
|
52524
|
+
"offset": 13105,
|
|
51376
52525
|
"length": 1,
|
|
51377
52526
|
"value": "0"
|
|
51378
52527
|
},
|
|
51379
52528
|
{
|
|
51380
52529
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
|
|
51381
52530
|
"kind": "BooleanLiteral",
|
|
51382
|
-
"offset":
|
|
52531
|
+
"offset": 13304,
|
|
51383
52532
|
"length": 4,
|
|
51384
52533
|
"value": "true"
|
|
51385
52534
|
},
|
|
51386
52535
|
{
|
|
51387
52536
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
|
|
51388
52537
|
"kind": "BooleanLiteral",
|
|
51389
|
-
"offset":
|
|
52538
|
+
"offset": 13337,
|
|
51390
52539
|
"length": 4,
|
|
51391
52540
|
"value": "true"
|
|
51392
52541
|
},
|
|
51393
52542
|
{
|
|
51394
52543
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
|
|
51395
52544
|
"kind": "IntegerLiteral",
|
|
51396
|
-
"offset":
|
|
52545
|
+
"offset": 13379,
|
|
51397
52546
|
"length": 1,
|
|
51398
52547
|
"value": "0"
|
|
51399
52548
|
},
|
|
51400
52549
|
{
|
|
51401
52550
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
|
|
51402
52551
|
"kind": "BooleanLiteral",
|
|
51403
|
-
"offset":
|
|
52552
|
+
"offset": 14553,
|
|
51404
52553
|
"length": 5,
|
|
51405
52554
|
"value": "false"
|
|
51406
52555
|
},
|
|
51407
52556
|
{
|
|
51408
52557
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
|
|
51409
52558
|
"kind": "IntegerLiteral",
|
|
51410
|
-
"offset":
|
|
52559
|
+
"offset": 14735,
|
|
51411
52560
|
"length": 2,
|
|
51412
52561
|
"value": "-1"
|
|
51413
52562
|
},
|
|
51414
52563
|
{
|
|
51415
52564
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
|
|
51416
52565
|
"kind": "IntegerLiteral",
|
|
51417
|
-
"offset":
|
|
52566
|
+
"offset": 14983,
|
|
51418
52567
|
"length": 1,
|
|
51419
52568
|
"value": "0"
|
|
51420
52569
|
},
|
|
51421
52570
|
{
|
|
51422
52571
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
|
|
51423
52572
|
"kind": "IntegerLiteral",
|
|
51424
|
-
"offset":
|
|
52573
|
+
"offset": 15033,
|
|
51425
52574
|
"length": 1,
|
|
51426
52575
|
"value": "0"
|
|
51427
52576
|
},
|
|
51428
52577
|
{
|
|
51429
52578
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
|
|
51430
52579
|
"kind": "IntegerLiteral",
|
|
51431
|
-
"offset":
|
|
52580
|
+
"offset": 15087,
|
|
51432
52581
|
"length": 1,
|
|
51433
52582
|
"value": "0"
|
|
51434
52583
|
},
|
|
51435
52584
|
{
|
|
51436
52585
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
|
|
51437
52586
|
"kind": "FloatLiteral",
|
|
51438
|
-
"offset":
|
|
52587
|
+
"offset": 15147,
|
|
51439
52588
|
"length": 3,
|
|
51440
52589
|
"value": "0.2"
|
|
51441
52590
|
},
|
|
51442
52591
|
{
|
|
51443
52592
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
|
|
51444
52593
|
"kind": "BooleanLiteral",
|
|
51445
|
-
"offset":
|
|
52594
|
+
"offset": 16580,
|
|
51446
52595
|
"length": 5,
|
|
51447
52596
|
"value": "false"
|
|
51448
52597
|
},
|
|
51449
52598
|
{
|
|
51450
52599
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
|
|
51451
52600
|
"kind": "IntegerLiteral",
|
|
51452
|
-
"offset":
|
|
52601
|
+
"offset": 16630,
|
|
51453
52602
|
"length": 2,
|
|
51454
52603
|
"value": "24"
|
|
51455
52604
|
},
|
|
51456
52605
|
{
|
|
51457
52606
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
|
|
51458
52607
|
"kind": "BooleanLiteral",
|
|
51459
|
-
"offset":
|
|
52608
|
+
"offset": 36437,
|
|
51460
52609
|
"length": 5,
|
|
51461
52610
|
"value": "false"
|
|
51462
52611
|
},
|
|
51463
52612
|
{
|
|
51464
52613
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
|
|
51465
52614
|
"kind": "BooleanLiteral",
|
|
51466
|
-
"offset":
|
|
52615
|
+
"offset": 126604,
|
|
51467
52616
|
"length": 5,
|
|
51468
52617
|
"value": "false"
|
|
51469
52618
|
},
|
|
51470
52619
|
{
|
|
51471
52620
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
|
|
51472
52621
|
"kind": "BooleanLiteral",
|
|
51473
|
-
"offset":
|
|
52622
|
+
"offset": 256537,
|
|
51474
52623
|
"length": 5,
|
|
51475
52624
|
"value": "false"
|
|
51476
52625
|
},
|
|
51477
52626
|
{
|
|
51478
52627
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
|
|
51479
52628
|
"kind": "BooleanLiteral",
|
|
51480
|
-
"offset":
|
|
52629
|
+
"offset": 267242,
|
|
51481
52630
|
"length": 5,
|
|
51482
52631
|
"value": "false"
|
|
51483
52632
|
},
|
|
@@ -51656,45 +52805,59 @@
|
|
|
51656
52805
|
"length": 23,
|
|
51657
52806
|
"value": "\"shortkit-posters-prod\""
|
|
51658
52807
|
},
|
|
52808
|
+
{
|
|
52809
|
+
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/VideoCarouselCell.swift",
|
|
52810
|
+
"kind": "BooleanLiteral",
|
|
52811
|
+
"offset": 1752,
|
|
52812
|
+
"length": 5,
|
|
52813
|
+
"value": "false"
|
|
52814
|
+
},
|
|
51659
52815
|
{
|
|
51660
52816
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/VideoCarouselCell.swift",
|
|
51661
52817
|
"kind": "Array",
|
|
51662
|
-
"offset":
|
|
52818
|
+
"offset": 1852,
|
|
51663
52819
|
"length": 2,
|
|
51664
52820
|
"value": "[]"
|
|
51665
52821
|
},
|
|
51666
52822
|
{
|
|
51667
52823
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/VideoCarouselCell.swift",
|
|
51668
52824
|
"kind": "IntegerLiteral",
|
|
51669
|
-
"offset":
|
|
52825
|
+
"offset": 1900,
|
|
51670
52826
|
"length": 1,
|
|
51671
52827
|
"value": "0"
|
|
51672
52828
|
},
|
|
51673
52829
|
{
|
|
51674
52830
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/VideoCarouselCell.swift",
|
|
51675
52831
|
"kind": "Array",
|
|
51676
|
-
"offset":
|
|
52832
|
+
"offset": 2646,
|
|
51677
52833
|
"length": 2,
|
|
51678
52834
|
"value": "[]"
|
|
51679
52835
|
},
|
|
51680
52836
|
{
|
|
51681
52837
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/VideoCarouselCell.swift",
|
|
51682
52838
|
"kind": "Dictionary",
|
|
51683
|
-
"offset":
|
|
52839
|
+
"offset": 2974,
|
|
51684
52840
|
"length": 3,
|
|
51685
52841
|
"value": "[]"
|
|
51686
52842
|
},
|
|
52843
|
+
{
|
|
52844
|
+
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/VideoCarouselCell.swift",
|
|
52845
|
+
"kind": "IntegerLiteral",
|
|
52846
|
+
"offset": 3395,
|
|
52847
|
+
"length": 1,
|
|
52848
|
+
"value": "0"
|
|
52849
|
+
},
|
|
51687
52850
|
{
|
|
51688
52851
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/VideoCarouselCell.swift",
|
|
51689
52852
|
"kind": "BooleanLiteral",
|
|
51690
|
-
"offset":
|
|
52853
|
+
"offset": 31591,
|
|
51691
52854
|
"length": 4,
|
|
51692
52855
|
"value": "true"
|
|
51693
52856
|
},
|
|
51694
52857
|
{
|
|
51695
52858
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/VideoCarouselCell.swift",
|
|
51696
52859
|
"kind": "IntegerLiteral",
|
|
51697
|
-
"offset":
|
|
52860
|
+
"offset": 38856,
|
|
51698
52861
|
"length": 1,
|
|
51699
52862
|
"value": "0"
|
|
51700
52863
|
},
|
|
@@ -52354,7 +53517,7 @@
|
|
|
52354
53517
|
"kind": "StringLiteral",
|
|
52355
53518
|
"offset": 154,
|
|
52356
53519
|
"length": 8,
|
|
52357
|
-
"value": "\"0.2.
|
|
53520
|
+
"value": "\"0.2.36\""
|
|
52358
53521
|
},
|
|
52359
53522
|
{
|
|
52360
53523
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/ShortKit.swift",
|
|
@@ -52734,6 +53897,13 @@
|
|
|
52734
53897
|
"length": 2,
|
|
52735
53898
|
"value": "12"
|
|
52736
53899
|
},
|
|
53900
|
+
{
|
|
53901
|
+
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Transitions\/FeedInteractiveDismissController.swift",
|
|
53902
|
+
"kind": "IntegerLiteral",
|
|
53903
|
+
"offset": 21554,
|
|
53904
|
+
"length": 2,
|
|
53905
|
+
"value": "40"
|
|
53906
|
+
},
|
|
52737
53907
|
{
|
|
52738
53908
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Transitions\/LiveRoomDismissController.swift",
|
|
52739
53909
|
"kind": "StringLiteral",
|
|
@@ -52877,112 +54047,112 @@
|
|
|
52877
54047
|
{
|
|
52878
54048
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Widget\/ShortKitWidgetViewController.swift",
|
|
52879
54049
|
"kind": "IntegerLiteral",
|
|
52880
|
-
"offset":
|
|
54050
|
+
"offset": 1884,
|
|
52881
54051
|
"length": 1,
|
|
52882
54052
|
"value": "0"
|
|
52883
54053
|
},
|
|
52884
54054
|
{
|
|
52885
54055
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Widget\/ShortKitWidgetViewController.swift",
|
|
52886
54056
|
"kind": "Array",
|
|
52887
|
-
"offset":
|
|
54057
|
+
"offset": 2426,
|
|
52888
54058
|
"length": 2,
|
|
52889
54059
|
"value": "[]"
|
|
52890
54060
|
},
|
|
52891
54061
|
{
|
|
52892
54062
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Widget\/ShortKitWidgetViewController.swift",
|
|
52893
54063
|
"kind": "Array",
|
|
52894
|
-
"offset":
|
|
54064
|
+
"offset": 2662,
|
|
52895
54065
|
"length": 2,
|
|
52896
54066
|
"value": "[]"
|
|
52897
54067
|
},
|
|
52898
54068
|
{
|
|
52899
54069
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Widget\/ShortKitWidgetViewController.swift",
|
|
52900
54070
|
"kind": "Array",
|
|
52901
|
-
"offset":
|
|
54071
|
+
"offset": 2986,
|
|
52902
54072
|
"length": 2,
|
|
52903
54073
|
"value": "[]"
|
|
52904
54074
|
},
|
|
52905
54075
|
{
|
|
52906
54076
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Widget\/ShortKitWidgetViewController.swift",
|
|
52907
54077
|
"kind": "Array",
|
|
52908
|
-
"offset":
|
|
54078
|
+
"offset": 3259,
|
|
52909
54079
|
"length": 2,
|
|
52910
54080
|
"value": "[]"
|
|
52911
54081
|
},
|
|
52912
54082
|
{
|
|
52913
54083
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Widget\/ShortKitWidgetViewController.swift",
|
|
52914
54084
|
"kind": "IntegerLiteral",
|
|
52915
|
-
"offset":
|
|
54085
|
+
"offset": 3817,
|
|
52916
54086
|
"length": 1,
|
|
52917
54087
|
"value": "3"
|
|
52918
54088
|
},
|
|
52919
54089
|
{
|
|
52920
54090
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Widget\/ShortKitWidgetViewController.swift",
|
|
52921
54091
|
"kind": "BooleanLiteral",
|
|
52922
|
-
"offset":
|
|
54092
|
+
"offset": 7318,
|
|
52923
54093
|
"length": 4,
|
|
52924
54094
|
"value": "true"
|
|
52925
54095
|
},
|
|
52926
54096
|
{
|
|
52927
54097
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Widget\/ShortKitWidgetViewController.swift",
|
|
52928
54098
|
"kind": "Array",
|
|
52929
|
-
"offset":
|
|
54099
|
+
"offset": 8200,
|
|
52930
54100
|
"length": 2,
|
|
52931
54101
|
"value": "[]"
|
|
52932
54102
|
},
|
|
52933
54103
|
{
|
|
52934
54104
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Widget\/ShortKitWidgetViewController.swift",
|
|
52935
54105
|
"kind": "BooleanLiteral",
|
|
52936
|
-
"offset":
|
|
54106
|
+
"offset": 10621,
|
|
52937
54107
|
"length": 5,
|
|
52938
54108
|
"value": "false"
|
|
52939
54109
|
},
|
|
52940
54110
|
{
|
|
52941
54111
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Widget\/ShortKitWidgetViewController.swift",
|
|
52942
54112
|
"kind": "BooleanLiteral",
|
|
52943
|
-
"offset":
|
|
54113
|
+
"offset": 10707,
|
|
52944
54114
|
"length": 5,
|
|
52945
54115
|
"value": "false"
|
|
52946
54116
|
},
|
|
52947
54117
|
{
|
|
52948
54118
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Widget\/ShortKitWidgetViewController.swift",
|
|
52949
54119
|
"kind": "BooleanLiteral",
|
|
52950
|
-
"offset":
|
|
54120
|
+
"offset": 10755,
|
|
52951
54121
|
"length": 5,
|
|
52952
54122
|
"value": "false"
|
|
52953
54123
|
},
|
|
52954
54124
|
{
|
|
52955
54125
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Widget\/ShortKitWidgetViewController.swift",
|
|
52956
54126
|
"kind": "BooleanLiteral",
|
|
52957
|
-
"offset":
|
|
54127
|
+
"offset": 11887,
|
|
52958
54128
|
"length": 5,
|
|
52959
54129
|
"value": "false"
|
|
52960
54130
|
},
|
|
52961
54131
|
{
|
|
52962
54132
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Widget\/ShortKitWidgetViewController.swift",
|
|
52963
54133
|
"kind": "BooleanLiteral",
|
|
52964
|
-
"offset":
|
|
54134
|
+
"offset": 11914,
|
|
52965
54135
|
"length": 5,
|
|
52966
54136
|
"value": "false"
|
|
52967
54137
|
},
|
|
52968
54138
|
{
|
|
52969
54139
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Widget\/ShortKitWidgetViewController.swift",
|
|
52970
54140
|
"kind": "BooleanLiteral",
|
|
52971
|
-
"offset":
|
|
54141
|
+
"offset": 11949,
|
|
52972
54142
|
"length": 5,
|
|
52973
54143
|
"value": "false"
|
|
52974
54144
|
},
|
|
52975
54145
|
{
|
|
52976
54146
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Widget\/ShortKitWidgetViewController.swift",
|
|
52977
54147
|
"kind": "BooleanLiteral",
|
|
52978
|
-
"offset":
|
|
54148
|
+
"offset": 11993,
|
|
52979
54149
|
"length": 4,
|
|
52980
54150
|
"value": "true"
|
|
52981
54151
|
},
|
|
52982
54152
|
{
|
|
52983
54153
|
"filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Widget\/ShortKitWidgetViewController.swift",
|
|
52984
54154
|
"kind": "StringLiteral",
|
|
52985
|
-
"offset":
|
|
54155
|
+
"offset": 39756,
|
|
52986
54156
|
"length": 16,
|
|
52987
54157
|
"value": "\"WidgetCardCell\""
|
|
52988
54158
|
},
|