Skip to content

Commit 6004dcc

Browse files
authored
Merge pull request #3 from ant-design/0.7.0-pub
0.7.0 pub
2 parents dc93ab9 + caebd1c commit 6004dcc

38 files changed

+71
-86
lines changed

CHANGELOG.md

+15-30
Original file line numberDiff line numberDiff line change
@@ -3,29 +3,25 @@ order: 2
33
english: 更新日志
44
---
55

6-
## 0.6.0
7-
8-
`2016-06-20`
6+
## 0.7.0
97

10-
### 0.6 版本的新特性和变化
8+
`2016-07-29`
119

12-
* 对 h5 的离线包方案支持更贴心
13-
- **组件按需加载**(包括js和样式文件),未 import 进来的组件不会打包进来,所以离线包的大小由业务规模大小决定。
14-
- 欢迎离线H5app业务来尝鲜!
15-
* 新增 6+ 个常用组件,至此各类业务中能抽象的基本组件、几乎能完全覆盖到。
16-
* 优化 [网站](http://antm.alipay.net/) ,更好用有木有。
10+
* 新增 `Tooltips``Card``Pagination``Loading``Table` 组件;
11+
* `ListAction` 更名为 `SwipeAction`
12+
* `WhiteSpace``WingBlank` 组件的 mode 属性修改为 size;
13+
* `InputItem``TextareaItem` 的左边label字数可以配置,有默认值;
14+
* `DatePicker` value 类型更改;
15+
* typescript 支持;
16+
* 完成 30+ 组件 对应的 react native 组件;稍后会放出 demo app 二维码:
17+
* demo app 支持扫码预览 web & react native 项目;
18+
* [官方网站](http://mobile.ant.design)优化;
1719

18-
### Web部分/新增组件
19-
20-
- `ListView`(高性能列表组件),目前处于beta版,适用场景为列表页面;
21-
- `ListAction`(滑动或长按操作);
22-
- `Grid`(九宫格);
23-
- `Menu`(筛选),替代SelectList组件;
24-
- `Uploader`(图片上传);
25-
- `RefreshControl`(下拉刷新)。
20+
## 0.6.0
2621

27-
### Web部分/功能优化
22+
`2016-06-20`
2823

24+
- 新增 `ListView``ListAction``Grid` `Menu``Uploader``RefreshControl`组件;
2925
- `ListPicker` / `ListDatePicker` 组件更名为 Picker / DatePicker;
3026
- 删除 `SelectList` 组件(可使用 `Radio` 组件代替),或者使用更强大的`Menu`组件;
3127
- 更新`Flex`,全部支持flex属性。(ps:UC内核对flex布局支持不完善);
@@ -34,18 +30,7 @@ english: 更新日志
3430
- `Tabs` 组件新增 tabbar 形式;
3531
- `TopNotice` 当mode 为 `closable`时, 则自动销毁;
3632
- `Steps`组件支持size为`pointer`的点状样式;
37-
38-
### RN部分
39-
- 提供`List``Button``Flex``WhiteSpace``WingBlank`五个UI组件。API和Web版组件基本保持一致,欢迎扫码尝鲜
40-
41-
![demo app](https://zos.alipayobjects.com/rmsportal/pqSGjgXJCojReWW.png)
42-
43-
### 工具部分
44-
45-
- antm-init 支持初始化H5/RN项目
46-
- antm-init 支持离线包项目(H5/RN)
47-
- antm-init使用遇到问题,请[提issues](http://gitlab.alibaba-inc.com/react-ui/antm-init/issues),近期会频繁更新。
48-
- 请通过antm-init工具来初始化antm项目,antm的组件按需依赖需要额外的[webpack配置](http://gitlab.alibaba-inc.com/react-ui/antm-init/blob/master/boilerplate/web/webpack.config.js#L2),或者参考antm-init里模板的webpack配置和依赖。
33+
- 提供`List``Button``Flex``WhiteSpace``WingBlank`五个UI组件;
4934

5035
## 0.5.0
5136

Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<resources>
2-
<string name="app_name">antm</string>
2+
<string name="app_name">antd-mobile</string>
33
</resources>

rn-kitchen-sink/components/WebIndex.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export default class WebIndex extends React.Component {
3131
ref="webview"
3232
onLoadEnd={this.onLoadEnd}
3333
automaticallyAdjustContentInsets={false}
34-
source={{ uri: 'http://antm.alipay.net/kitchen-sink.html' }}
34+
source={{ uri: 'http://mobile.ant.design/kitchen-sink/' }}
3535
/>
3636
<Modal
3737
animationType={'none'}

rn-kitchen-sink/ios/antm.xcodeproj/project.pbxproj renamed to rn-kitchen-sink/ios/antd-mobile.xcodeproj/project.pbxproj

+29-29
Original file line numberDiff line numberDiff line change
@@ -118,13 +118,13 @@
118118
/* End PBXContainerItemProxy section */
119119

120120
/* Begin PBXFileReference section */
121-
13B07F961A680F5B00A75B9A /* antm.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = antm.app; sourceTree = BUILT_PRODUCTS_DIR; };
122-
13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = antm/AppDelegate.h; sourceTree = "<group>"; };
123-
13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = antm/AppDelegate.m; sourceTree = "<group>"; };
121+
13B07F961A680F5B00A75B9A /* antd-mobile.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "antd-mobile.app"; sourceTree = BUILT_PRODUCTS_DIR; };
122+
13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = "antd-mobile/AppDelegate.h"; sourceTree = "<group>"; };
123+
13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = "antd-mobile/AppDelegate.m"; sourceTree = "<group>"; };
124124
13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = "<group>"; };
125-
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = antm/Images.xcassets; sourceTree = "<group>"; };
126-
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = antm/Info.plist; sourceTree = "<group>"; };
127-
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = antm/main.m; sourceTree = "<group>"; };
125+
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = "antd-mobile/Images.xcassets"; sourceTree = "<group>"; };
126+
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = "antd-mobile/Info.plist"; sourceTree = "<group>"; };
127+
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = "antd-mobile/main.m"; sourceTree = "<group>"; };
128128
932800F11D1285D000A90AF1 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../../node_modules/react-native/React/React.xcodeproj"; sourceTree = "<group>"; };
129129
932800F71D1285E400A90AF1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = "<group>"; };
130130
932800FD1D1285ED00A90AF1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = "<group>"; };
@@ -137,12 +137,12 @@
137137
932801271D12861700A90AF1 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = "<group>"; };
138138
936A04751D267BB0005EE7C1 /* CodePush.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = CodePush.xcodeproj; path = "../../node_modules/react-native-code-push/ios/CodePush.xcodeproj"; sourceTree = "<group>"; };
139139
936A047C1D267C03005EE7C1 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
140-
93ABB6061D2A301C00652A63 /* HomeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HomeViewController.h; path = antm/HomeViewController.h; sourceTree = "<group>"; };
141-
93ABB6071D2A301C00652A63 /* HomeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HomeViewController.m; path = antm/HomeViewController.m; sourceTree = "<group>"; };
142-
93ABB61F1D2A3DF100652A63 /* ScanViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ScanViewController.h; path = antm/ScanViewController.h; sourceTree = "<group>"; };
143-
93ABB6201D2A3DF100652A63 /* ScanViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ScanViewController.m; path = antm/ScanViewController.m; sourceTree = "<group>"; };
144-
93ABB6221D2A3E2600652A63 /* ResultViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ResultViewController.h; path = antm/ResultViewController.h; sourceTree = "<group>"; };
145-
93ABB6231D2A3E2600652A63 /* ResultViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ResultViewController.m; path = antm/ResultViewController.m; sourceTree = "<group>"; };
140+
93ABB6061D2A301C00652A63 /* HomeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HomeViewController.h; path = "antd-mobile/HomeViewController.h"; sourceTree = "<group>"; };
141+
93ABB6071D2A301C00652A63 /* HomeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HomeViewController.m; path = "antd-mobile/HomeViewController.m"; sourceTree = "<group>"; };
142+
93ABB61F1D2A3DF100652A63 /* ScanViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ScanViewController.h; path = "antd-mobile/ScanViewController.h"; sourceTree = "<group>"; };
143+
93ABB6201D2A3DF100652A63 /* ScanViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ScanViewController.m; path = "antd-mobile/ScanViewController.m"; sourceTree = "<group>"; };
144+
93ABB6221D2A3E2600652A63 /* ResultViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ResultViewController.h; path = "antd-mobile/ResultViewController.h"; sourceTree = "<group>"; };
145+
93ABB6231D2A3E2600652A63 /* ResultViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ResultViewController.m; path = "antd-mobile/ResultViewController.m"; sourceTree = "<group>"; };
146146
93ABB6251D2A430B00652A63 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
147147
93BF62B21D44DF2400AFA3D0 /* RCTCameraRoll.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTCameraRoll.xcodeproj; path = "../../node_modules/react-native/Libraries/CameraRoll/RCTCameraRoll.xcodeproj"; sourceTree = "<group>"; };
148148
/* End PBXFileReference section */
@@ -172,7 +172,7 @@
172172
/* End PBXFrameworksBuildPhase section */
173173

174174
/* Begin PBXGroup section */
175-
13B07FAE1A68108700A75B9A /* antm */ = {
175+
13B07FAE1A68108700A75B9A /* antd-mobile */ = {
176176
isa = PBXGroup;
177177
children = (
178178
13B07FAF1A68108700A75B9A /* AppDelegate.h */,
@@ -188,7 +188,7 @@
188188
93ABB6221D2A3E2600652A63 /* ResultViewController.h */,
189189
93ABB6231D2A3E2600652A63 /* ResultViewController.m */,
190190
);
191-
name = antm;
191+
name = "antd-mobile";
192192
sourceTree = "<group>";
193193
};
194194
832341AE1AAA6A7D00B99B32 /* Libraries */ = {
@@ -215,7 +215,7 @@
215215
children = (
216216
93ABB6251D2A430B00652A63 /* AVFoundation.framework */,
217217
936A047C1D267C03005EE7C1 /* libz.tbd */,
218-
13B07FAE1A68108700A75B9A /* antm */,
218+
13B07FAE1A68108700A75B9A /* antd-mobile */,
219219
832341AE1AAA6A7D00B99B32 /* Libraries */,
220220
83CBBA001A601CBA00E9B192 /* Products */,
221221
);
@@ -226,7 +226,7 @@
226226
83CBBA001A601CBA00E9B192 /* Products */ = {
227227
isa = PBXGroup;
228228
children = (
229-
13B07F961A680F5B00A75B9A /* antm.app */,
229+
13B07F961A680F5B00A75B9A /* antd-mobile.app */,
230230
);
231231
name = Products;
232232
sourceTree = "<group>";
@@ -330,9 +330,9 @@
330330
/* End PBXGroup section */
331331

332332
/* Begin PBXNativeTarget section */
333-
13B07F861A680F5B00A75B9A /* antm */ = {
333+
13B07F861A680F5B00A75B9A /* antd-mobile */ = {
334334
isa = PBXNativeTarget;
335-
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "antm" */;
335+
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "antd-mobile" */;
336336
buildPhases = (
337337
13B07F871A680F5B00A75B9A /* Sources */,
338338
13B07F8C1A680F5B00A75B9A /* Frameworks */,
@@ -342,9 +342,9 @@
342342
);
343343
dependencies = (
344344
);
345-
name = antm;
345+
name = "antd-mobile";
346346
productName = "Hello World";
347-
productReference = 13B07F961A680F5B00A75B9A /* antm.app */;
347+
productReference = 13B07F961A680F5B00A75B9A /* antd-mobile.app */;
348348
productType = "com.apple.product-type.application";
349349
};
350350
/* End PBXNativeTarget section */
@@ -356,7 +356,7 @@
356356
LastUpgradeCheck = 0730;
357357
ORGANIZATIONNAME = Facebook;
358358
};
359-
buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "antm" */;
359+
buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "antd-mobile" */;
360360
compatibilityVersion = "Xcode 3.2";
361361
developmentRegion = English;
362362
hasScannedForEncodings = 0;
@@ -419,7 +419,7 @@
419419
);
420420
projectRoot = "";
421421
targets = (
422-
13B07F861A680F5B00A75B9A /* antm */,
422+
13B07F861A680F5B00A75B9A /* antd-mobile */,
423423
);
424424
};
425425
/* End PBXProject section */
@@ -545,7 +545,7 @@
545545
13B07FB21A68108700A75B9A /* Base */,
546546
);
547547
name = LaunchScreen.xib;
548-
path = antm;
548+
path = "antd-mobile";
549549
sourceTree = "<group>";
550550
};
551551
/* End PBXVariantGroup section */
@@ -569,14 +569,14 @@
569569
"$(SRCROOT)/../../node_modules/react-native/React/**",
570570
"$(SRCROOT)/../../node_modules/react-native-code-push/**",
571571
);
572-
INFOPLIST_FILE = antm/Info.plist;
572+
INFOPLIST_FILE = "antd-mobile/Info.plist";
573573
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
574574
OTHER_LDFLAGS = (
575575
"-ObjC",
576576
"-lc++",
577577
);
578578
PRODUCT_BUNDLE_IDENTIFIER = com.mybank.ios.RNPlayground;
579-
PRODUCT_NAME = antm;
579+
PRODUCT_NAME = "antd-mobile";
580580
PROVISIONING_PROFILE = "a8097e9a-687b-42ee-9af9-826171343137";
581581
};
582582
name = Debug;
@@ -598,14 +598,14 @@
598598
"$(SRCROOT)/../../node_modules/react-native/React/**",
599599
"$(SRCROOT)/../../node_modules/react-native-code-push/**",
600600
);
601-
INFOPLIST_FILE = antm/Info.plist;
601+
INFOPLIST_FILE = "antd-mobile/Info.plist";
602602
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
603603
OTHER_LDFLAGS = (
604604
"-ObjC",
605605
"-lc++",
606606
);
607607
PRODUCT_BUNDLE_IDENTIFIER = com.mybank.ios.RNPlayground;
608-
PRODUCT_NAME = antm;
608+
PRODUCT_NAME = "antd-mobile";
609609
PROVISIONING_PROFILE = "a8097e9a-687b-42ee-9af9-826171343137";
610610
};
611611
name = Release;
@@ -700,7 +700,7 @@
700700
/* End XCBuildConfiguration section */
701701

702702
/* Begin XCConfigurationList section */
703-
13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "antm" */ = {
703+
13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "antd-mobile" */ = {
704704
isa = XCConfigurationList;
705705
buildConfigurations = (
706706
13B07F941A680F5B00A75B9A /* Debug */,
@@ -709,7 +709,7 @@
709709
defaultConfigurationIsVisible = 0;
710710
defaultConfigurationName = Release;
711711
};
712-
83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "antm" */ = {
712+
83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "antd-mobile" */ = {
713713
isa = XCConfigurationList;
714714
buildConfigurations = (
715715
83CBBA201A601CBA00E9B192 /* Debug */,

rn-kitchen-sink/ios/antm.xcodeproj/xcshareddata/xcschemes/antm.xcscheme renamed to rn-kitchen-sink/ios/antd-mobile.xcodeproj/xcshareddata/xcschemes/antm.xcscheme

+18-18
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
<BuildableReference
1616
BuildableIdentifier = "primary"
1717
BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
18-
BuildableName = "antm.app"
19-
BlueprintName = "antm"
20-
ReferencedContainer = "container:antm.xcodeproj">
18+
BuildableName = "antd-mobile.app"
19+
BlueprintName = "antd-mobile"
20+
ReferencedContainer = "container:antd-mobile.xcodeproj">
2121
</BuildableReference>
2222
</BuildActionEntry>
2323
<BuildActionEntry
@@ -29,9 +29,9 @@
2929
<BuildableReference
3030
BuildableIdentifier = "primary"
3131
BlueprintIdentifier = "00E356ED1AD99517003FC87E"
32-
BuildableName = "antmTests.xctest"
33-
BlueprintName = "antmTests"
34-
ReferencedContainer = "container:antm.xcodeproj">
32+
BuildableName = "antd-mobileTests.xctest"
33+
BlueprintName = "antd-mobileTests"
34+
ReferencedContainer = "container:antd-mobile.xcodeproj">
3535
</BuildableReference>
3636
</BuildActionEntry>
3737
</BuildActionEntries>
@@ -47,19 +47,19 @@
4747
<BuildableReference
4848
BuildableIdentifier = "primary"
4949
BlueprintIdentifier = "00E356ED1AD99517003FC87E"
50-
BuildableName = "antmTests.xctest"
51-
BlueprintName = "antmTests"
52-
ReferencedContainer = "container:antm.xcodeproj">
50+
BuildableName = "antd-mobileTests.xctest"
51+
BlueprintName = "antd-mobileTests"
52+
ReferencedContainer = "container:antd-mobile.xcodeproj">
5353
</BuildableReference>
5454
</TestableReference>
5555
</Testables>
5656
<MacroExpansion>
5757
<BuildableReference
5858
BuildableIdentifier = "primary"
5959
BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
60-
BuildableName = "antm.app"
61-
BlueprintName = "antm"
62-
ReferencedContainer = "container:antm.xcodeproj">
60+
BuildableName = "antd-mobile.app"
61+
BlueprintName = "antd-mobile"
62+
ReferencedContainer = "container:antd-mobile.xcodeproj">
6363
</BuildableReference>
6464
</MacroExpansion>
6565
<AdditionalOptions>
@@ -80,9 +80,9 @@
8080
<BuildableReference
8181
BuildableIdentifier = "primary"
8282
BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
83-
BuildableName = "antm.app"
84-
BlueprintName = "antm"
85-
ReferencedContainer = "container:antm.xcodeproj">
83+
BuildableName = "antd-mobile.app"
84+
BlueprintName = "antd-mobile"
85+
ReferencedContainer = "container:antd-mobile.xcodeproj">
8686
</BuildableReference>
8787
</BuildableProductRunnable>
8888
<AdditionalOptions>
@@ -99,9 +99,9 @@
9999
<BuildableReference
100100
BuildableIdentifier = "primary"
101101
BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
102-
BuildableName = "antm.app"
103-
BlueprintName = "antm"
104-
ReferencedContainer = "container:antm.xcodeproj">
102+
BuildableName = "antd-mobile.app"
103+
BlueprintName = "antd-mobile"
104+
ReferencedContainer = "container:antd-mobile.xcodeproj">
105105
</BuildableReference>
106106
</BuildableProductRunnable>
107107
</ProfileAction>

rn-kitchen-sink/ios/antm/HomeViewController.h renamed to rn-kitchen-sink/ios/antd-mobile/HomeViewController.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// HomeViewController.h
3-
// antm
3+
// antd-mobile
44
//
55
// Created by silentcloud on 7/4/16.
66
// Copyright © 2016 Facebook. All rights reserved.

rn-kitchen-sink/ios/antm/HomeViewController.m renamed to rn-kitchen-sink/ios/antd-mobile/HomeViewController.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// HomeViewController.m
3-
// antm
3+
// antd-mobile
44
//
55
// Created by silentcloud on 7/4/16.
66
// Copyright © 2016 Facebook. All rights reserved.

rn-kitchen-sink/ios/antm/Info.plist renamed to rn-kitchen-sink/ios/antd-mobile/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.1.0</string>
18+
<string>0.7.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

rn-kitchen-sink/ios/antm/ResultViewController.h renamed to rn-kitchen-sink/ios/antd-mobile/ResultViewController.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// ResultViewController.h
3-
// antm
3+
// antd-mobile
44
//
55
// Created by silentcloud on 7/4/16.
66
// Copyright © 2016 Facebook. All rights reserved.

rn-kitchen-sink/ios/antm/ResultViewController.m renamed to rn-kitchen-sink/ios/antd-mobile/ResultViewController.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// ResultViewController.m
3-
// antm
3+
// antd-mobile
44
//
55
// Created by silentcloud on 7/4/16.
66
// Copyright © 2016 Facebook. All rights reserved.

rn-kitchen-sink/ios/antm/ScanViewController.h renamed to rn-kitchen-sink/ios/antd-mobile/ScanViewController.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// ScanViewController.h
3-
// antm
3+
// antd-mobile
44
//
55
// Created by silentcloud on 7/4/16.
66
// Copyright © 2016 Facebook. All rights reserved.

0 commit comments

Comments
 (0)