@plasmicpkgs/antd 0.0.85 → 0.0.86
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/dist/antd.cjs.development.js +18 -2
- package/dist/antd.cjs.development.js.map +1 -1
- package/dist/antd.cjs.production.min.js +1 -1
- package/dist/antd.cjs.production.min.js.map +1 -1
- package/dist/antd.esm.js +18 -2
- package/dist/antd.esm.js.map +1 -1
- package/package.json +2 -2
- package/skinny/registerTabs.js +24 -0
- package/skinny/registerTabs.js.map +1 -1
|
@@ -1910,13 +1910,29 @@ var tabsMeta = {
|
|
|
1910
1910
|
type: "component",
|
|
1911
1911
|
name: "AntdTabPane",
|
|
1912
1912
|
props: {
|
|
1913
|
-
key: "1"
|
|
1913
|
+
key: "1",
|
|
1914
|
+
tab: [{
|
|
1915
|
+
type: "text",
|
|
1916
|
+
value: "Tab"
|
|
1917
|
+
}],
|
|
1918
|
+
children: [{
|
|
1919
|
+
type: "text",
|
|
1920
|
+
value: "Tab content"
|
|
1921
|
+
}]
|
|
1914
1922
|
}
|
|
1915
1923
|
}, {
|
|
1916
1924
|
type: "component",
|
|
1917
1925
|
name: "AntdTabPane",
|
|
1918
1926
|
props: {
|
|
1919
|
-
key: "2"
|
|
1927
|
+
key: "2",
|
|
1928
|
+
tab: [{
|
|
1929
|
+
type: "text",
|
|
1930
|
+
value: "Tab"
|
|
1931
|
+
}],
|
|
1932
|
+
children: [{
|
|
1933
|
+
type: "text",
|
|
1934
|
+
value: "Tab content"
|
|
1935
|
+
}]
|
|
1920
1936
|
}
|
|
1921
1937
|
}]
|
|
1922
1938
|
}
|