feffery_antd_components 0.1.4 → 0.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (163) hide show
  1. package/DESCRIPTION +1 -1
  2. package/NAMESPACE +2 -0
  3. package/Project.toml +1 -1
  4. package/README.md +2 -2
  5. package/build/lib/feffery_antd_components/AntdAffix.py +54 -0
  6. package/build/lib/feffery_antd_components/AntdAlert.py +58 -0
  7. package/build/lib/feffery_antd_components/AntdAnchor.py +60 -0
  8. package/build/lib/feffery_antd_components/AntdAvatar.py +79 -0
  9. package/build/lib/feffery_antd_components/AntdBackTop.py +52 -0
  10. package/build/lib/feffery_antd_components/AntdBadge.py +70 -0
  11. package/build/lib/feffery_antd_components/AntdBreadcrumb.py +74 -0
  12. package/build/lib/feffery_antd_components/AntdButton.py +68 -0
  13. package/build/lib/feffery_antd_components/AntdCalendar.py +75 -0
  14. package/build/lib/feffery_antd_components/AntdCard.py +86 -0
  15. package/build/lib/feffery_antd_components/AntdCardGrid.py +52 -0
  16. package/build/lib/feffery_antd_components/AntdCarousel.py +56 -0
  17. package/build/lib/feffery_antd_components/AntdCascader.py +93 -0
  18. package/build/lib/feffery_antd_components/AntdCheckbox.py +71 -0
  19. package/build/lib/feffery_antd_components/AntdCheckboxGroup.py +79 -0
  20. package/build/lib/feffery_antd_components/AntdCol.py +146 -0
  21. package/build/lib/feffery_antd_components/AntdCollapse.py +79 -0
  22. package/build/lib/feffery_antd_components/AntdComment.py +88 -0
  23. package/build/lib/feffery_antd_components/AntdContent.py +50 -0
  24. package/build/lib/feffery_antd_components/AntdCountdown.py +72 -0
  25. package/build/lib/feffery_antd_components/AntdDatePicker.py +95 -0
  26. package/build/lib/feffery_antd_components/AntdDateRangePicker.py +91 -0
  27. package/build/lib/feffery_antd_components/AntdDescriptionItem.py +58 -0
  28. package/build/lib/feffery_antd_components/AntdDescriptions.py +76 -0
  29. package/build/lib/feffery_antd_components/AntdDivider.py +62 -0
  30. package/build/lib/feffery_antd_components/AntdDraggerUpload.py +84 -0
  31. package/build/lib/feffery_antd_components/AntdDrawer.py +72 -0
  32. package/build/lib/feffery_antd_components/AntdDropdown.py +84 -0
  33. package/build/lib/feffery_antd_components/AntdEmpty.py +54 -0
  34. package/build/lib/feffery_antd_components/AntdFooter.py +50 -0
  35. package/build/lib/feffery_antd_components/AntdForm.py +72 -0
  36. package/build/lib/feffery_antd_components/AntdFormItem.py +84 -0
  37. package/build/lib/feffery_antd_components/AntdHeader.py +50 -0
  38. package/build/lib/feffery_antd_components/AntdIcon.py +48 -0
  39. package/build/lib/feffery_antd_components/AntdImage.py +62 -0
  40. package/build/lib/feffery_antd_components/AntdInput.py +101 -0
  41. package/build/lib/feffery_antd_components/AntdInputNumber.py +101 -0
  42. package/build/lib/feffery_antd_components/AntdLayout.py +50 -0
  43. package/build/lib/feffery_antd_components/AntdMentions.py +76 -0
  44. package/build/lib/feffery_antd_components/AntdMenu.py +81 -0
  45. package/build/lib/feffery_antd_components/AntdMessage.py +56 -0
  46. package/build/lib/feffery_antd_components/AntdModal.py +88 -0
  47. package/build/lib/feffery_antd_components/AntdNotification.py +60 -0
  48. package/build/lib/feffery_antd_components/AntdPageHeader.py +62 -0
  49. package/build/lib/feffery_antd_components/AntdPagination.py +95 -0
  50. package/build/lib/feffery_antd_components/AntdParagraph.py +70 -0
  51. package/build/lib/feffery_antd_components/AntdPasteImage.py +52 -0
  52. package/build/lib/feffery_antd_components/AntdPopconfirm.py +80 -0
  53. package/build/lib/feffery_antd_components/AntdPopover.py +74 -0
  54. package/build/lib/feffery_antd_components/AntdProgress.py +88 -0
  55. package/build/lib/feffery_antd_components/AntdRadio.py +54 -0
  56. package/build/lib/feffery_antd_components/AntdRadioGroup.py +89 -0
  57. package/build/lib/feffery_antd_components/AntdRate.py +60 -0
  58. package/build/lib/feffery_antd_components/AntdResult.py +52 -0
  59. package/build/lib/feffery_antd_components/AntdRibbon.py +54 -0
  60. package/build/lib/feffery_antd_components/AntdRow.py +72 -0
  61. package/build/lib/feffery_antd_components/AntdSelect.py +121 -0
  62. package/build/lib/feffery_antd_components/AntdSider.py +68 -0
  63. package/build/lib/feffery_antd_components/AntdSkeleton.py +86 -0
  64. package/build/lib/feffery_antd_components/AntdSlider.py +68 -0
  65. package/build/lib/feffery_antd_components/AntdSpace.py +60 -0
  66. package/build/lib/feffery_antd_components/AntdSpin.py +68 -0
  67. package/build/lib/feffery_antd_components/AntdStatistic.py +74 -0
  68. package/build/lib/feffery_antd_components/AntdSteps.py +72 -0
  69. package/build/lib/feffery_antd_components/AntdSwitch.py +75 -0
  70. package/build/lib/feffery_antd_components/AntdTabPane.py +66 -0
  71. package/build/lib/feffery_antd_components/AntdTable.py +264 -0
  72. package/build/lib/feffery_antd_components/AntdTabs.py +81 -0
  73. package/build/lib/feffery_antd_components/AntdTag.py +54 -0
  74. package/build/lib/feffery_antd_components/AntdTestLink.py +58 -0
  75. package/build/lib/feffery_antd_components/AntdText.py +72 -0
  76. package/build/lib/feffery_antd_components/AntdTimePicker.py +95 -0
  77. package/build/lib/feffery_antd_components/AntdTimeRangePicker.py +95 -0
  78. package/build/lib/feffery_antd_components/AntdTimeline.py +68 -0
  79. package/build/lib/feffery_antd_components/AntdTitle.py +74 -0
  80. package/build/lib/feffery_antd_components/AntdTooltip.py +64 -0
  81. package/build/lib/feffery_antd_components/AntdTransfer.py +99 -0
  82. package/build/lib/feffery_antd_components/AntdTree.py +103 -0
  83. package/build/lib/feffery_antd_components/AntdTreeSelect.py +107 -0
  84. package/build/lib/feffery_antd_components/AntdTypography.py +50 -0
  85. package/build/lib/feffery_antd_components/AntdUpload.py +92 -0
  86. package/build/lib/feffery_antd_components/AntdWatermark.py +64 -0
  87. package/build/lib/feffery_antd_components/Link.py +58 -0
  88. package/build/lib/feffery_antd_components/__init__.py +53 -0
  89. package/build/lib/feffery_antd_components/_imports_.py +161 -0
  90. package/build/lib/feffery_antd_components/feffery_antd_components.min.js +344 -0
  91. package/build/lib/feffery_antd_components/metadata.json +15596 -0
  92. package/build/lib/feffery_antd_components/package-info.json +81 -0
  93. package/feffery_antd_components/AntdAnchor.py +9 -3
  94. package/feffery_antd_components/AntdButton.py +5 -3
  95. package/feffery_antd_components/AntdCascader.py +5 -3
  96. package/feffery_antd_components/AntdDatePicker.py +5 -3
  97. package/feffery_antd_components/AntdDateRangePicker.py +5 -3
  98. package/feffery_antd_components/AntdDraggerUpload.py +6 -4
  99. package/feffery_antd_components/AntdImage.py +2 -2
  100. package/feffery_antd_components/AntdInput.py +5 -3
  101. package/feffery_antd_components/AntdInputNumber.py +5 -3
  102. package/feffery_antd_components/AntdMentions.py +5 -3
  103. package/feffery_antd_components/AntdMessage.py +5 -3
  104. package/feffery_antd_components/AntdPasteImage.py +52 -0
  105. package/feffery_antd_components/AntdSelect.py +7 -3
  106. package/feffery_antd_components/AntdTable.py +27 -3
  107. package/feffery_antd_components/AntdTimePicker.py +5 -3
  108. package/feffery_antd_components/AntdTimeRangePicker.py +5 -3
  109. package/feffery_antd_components/AntdTree.py +6 -10
  110. package/feffery_antd_components/AntdTreeSelect.py +7 -3
  111. package/feffery_antd_components/AntdUpload.py +16 -4
  112. package/feffery_antd_components/AntdWatermark.py +64 -0
  113. package/feffery_antd_components/_imports_.py +4 -0
  114. package/feffery_antd_components/feffery_antd_components.min.js +13 -13
  115. package/feffery_antd_components/metadata.json +680 -43
  116. package/feffery_antd_components/package-info.json +18 -14
  117. package/package.json +18 -14
  118. package/src/FefferyAntdComponents.jl +5 -3
  119. package/src/jl/'feffery'_antdanchor.jl +4 -1
  120. package/src/jl/'feffery'_antdbutton.jl +2 -1
  121. package/src/jl/'feffery'_antdcascader.jl +2 -1
  122. package/src/jl/'feffery'_antddatepicker.jl +2 -1
  123. package/src/jl/'feffery'_antddaterangepicker.jl +2 -1
  124. package/src/jl/'feffery'_antddraggerupload.jl +2 -1
  125. package/src/jl/'feffery'_antdimage.jl +2 -2
  126. package/src/jl/'feffery'_antdinput.jl +2 -1
  127. package/src/jl/'feffery'_antdinputnumber.jl +2 -1
  128. package/src/jl/'feffery'_antdmentions.jl +2 -1
  129. package/src/jl/'feffery'_antdmessage.jl +2 -1
  130. package/src/jl/'feffery'_antdpasteimage.jl +28 -0
  131. package/src/jl/'feffery'_antdselect.jl +3 -1
  132. package/src/jl/'feffery'_antdtable.jl +19 -5
  133. package/src/jl/'feffery'_antdtimepicker.jl +2 -1
  134. package/src/jl/'feffery'_antdtimerangepicker.jl +2 -1
  135. package/src/jl/'feffery'_antdtree.jl +3 -5
  136. package/src/jl/'feffery'_antdtreeselect.jl +3 -1
  137. package/src/jl/'feffery'_antdupload.jl +9 -2
  138. package/src/jl/'feffery'_antdwatermark.jl +39 -0
  139. package/src/lib/components/AntdAnchor.react.js +18 -3
  140. package/src/lib/components/AntdButton.react.js +5 -1
  141. package/src/lib/components/AntdCascader.react.js +5 -0
  142. package/src/lib/components/AntdDatePicker.react.js +5 -0
  143. package/src/lib/components/AntdDateRangePicker.react.js +5 -0
  144. package/src/lib/components/AntdDraggerUpload.react.js +41 -11
  145. package/src/lib/components/AntdImage.react.js +8 -2
  146. package/src/lib/components/AntdInput.react.js +8 -0
  147. package/src/lib/components/AntdInputNumber.react.js +5 -0
  148. package/src/lib/components/AntdMentions.react.js +5 -0
  149. package/src/lib/components/AntdMessage.react.js +6 -1
  150. package/src/lib/components/AntdPasteImage.react.js +170 -0
  151. package/src/lib/components/AntdSelect.react.js +11 -0
  152. package/src/lib/components/AntdTable.react.js +69 -6
  153. package/src/lib/components/AntdTimePicker.react.js +5 -0
  154. package/src/lib/components/AntdTimeRangePicker.react.js +5 -0
  155. package/src/lib/components/AntdTree.react.js +6 -13
  156. package/src/lib/components/AntdTreeSelect.react.js +11 -0
  157. package/src/lib/components/AntdUpload.react.js +78 -24
  158. package/src/lib/components/AntdWatermark.react.js +115 -0
  159. package/src/lib/components/styles.css +12 -11
  160. package/src/lib/components/tabs/AntdTabs.react.js +4 -0
  161. package/src/lib/index.js +5 -1
  162. package/usage.py +76 -1033
  163. package/webpack.config.js +9 -3
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "feffery_antd_components",
3
- "version": "0.1.4",
3
+ "version": "0.1.7",
4
4
  "description": "Best implementation of Antd components in Plotly Dash.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -23,20 +23,22 @@
23
23
  "email": "fefferypzy@gmail.com",
24
24
  "license": "MIT",
25
25
  "dependencies": {
26
- "@ant-design/charts": "^1.3.5",
27
- "@ant-design/icons": "^4.6.3",
28
- "antd": "^4.19.1",
29
- "dash-extensions-js": "^0.0.8",
30
- "is-absolute-url": "^4.0.1",
31
- "md5": "^2.3.0",
32
- "ramda": "^0.26.1",
33
- "react-fast-marquee": "^1.3.1",
34
- "react-highlight-words": "^0.17.0",
35
- "react-icons": "^4.2.0",
36
- "react-text-loop": "^2.3.0",
37
- "uuid": "^8.3.2"
26
+ "@ant-design/charts": "1.3.5",
27
+ "@ant-design/icons": "4.7.0",
28
+ "@ant-design/pro-layout": "^6.34.7",
29
+ "antd": "4.19.3",
30
+ "dash-extensions-js": "0.0.8",
31
+ "is-absolute-url": "4.0.1",
32
+ "md5": "2.3.0",
33
+ "ramda": "0.26.1",
34
+ "react-fast-marquee": "1.3.1",
35
+ "react-highlight-words": "0.17.0",
36
+ "react-icons": "4.2.0",
37
+ "react-text-loop": "2.3.0",
38
+ "uuid": "8.3.2"
38
39
  },
39
40
  "devDependencies": {
41
+ "@charliewilco/gluejar": "^1.0.0",
40
42
  "@babel/core": "^7.5.4",
41
43
  "@babel/plugin-proposal-object-rest-spread": "^7.5.4",
42
44
  "@babel/preset-env": "^7.5.4",
@@ -45,6 +47,8 @@
45
47
  "babel-loader": "^8.0.6",
46
48
  "copyfiles": "^2.1.1",
47
49
  "css-loader": "^3.0.0",
50
+ "less": "^3.13.1",
51
+ "less-loader": "^5.0.0",
48
52
  "eslint": "^6.0.1",
49
53
  "eslint-config-prettier": "^6.0.0",
50
54
  "eslint-plugin-import": "^2.18.0",
@@ -57,7 +61,7 @@
57
61
  "style-loader": "^0.23.1",
58
62
  "styled-jsx": "^3.2.1",
59
63
  "uglifyjs-webpack-plugin": "^2.2.0",
60
- "webpack": "^4.36.1",
64
+ "webpack": "4.36.1",
61
65
  "webpack-cli": "^3.3.6",
62
66
  "webpack-serve": "3.1.0"
63
67
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "feffery_antd_components",
3
- "version": "0.1.4",
3
+ "version": "0.1.7",
4
4
  "description": "Best implementation of Antd components in Plotly Dash.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -23,20 +23,22 @@
23
23
  "email": "fefferypzy@gmail.com",
24
24
  "license": "MIT",
25
25
  "dependencies": {
26
- "@ant-design/charts": "^1.3.5",
27
- "@ant-design/icons": "^4.6.3",
28
- "antd": "^4.19.1",
29
- "dash-extensions-js": "^0.0.8",
30
- "is-absolute-url": "^4.0.1",
31
- "md5": "^2.3.0",
32
- "ramda": "^0.26.1",
33
- "react-fast-marquee": "^1.3.1",
34
- "react-highlight-words": "^0.17.0",
35
- "react-icons": "^4.2.0",
36
- "react-text-loop": "^2.3.0",
37
- "uuid": "^8.3.2"
26
+ "@ant-design/charts": "1.3.5",
27
+ "@ant-design/icons": "4.7.0",
28
+ "@ant-design/pro-layout": "^6.34.7",
29
+ "antd": "4.19.3",
30
+ "dash-extensions-js": "0.0.8",
31
+ "is-absolute-url": "4.0.1",
32
+ "md5": "2.3.0",
33
+ "ramda": "0.26.1",
34
+ "react-fast-marquee": "1.3.1",
35
+ "react-highlight-words": "0.17.0",
36
+ "react-icons": "4.2.0",
37
+ "react-text-loop": "2.3.0",
38
+ "uuid": "8.3.2"
38
39
  },
39
40
  "devDependencies": {
41
+ "@charliewilco/gluejar": "^1.0.0",
40
42
  "@babel/core": "^7.5.4",
41
43
  "@babel/plugin-proposal-object-rest-spread": "^7.5.4",
42
44
  "@babel/preset-env": "^7.5.4",
@@ -45,6 +47,8 @@
45
47
  "babel-loader": "^8.0.6",
46
48
  "copyfiles": "^2.1.1",
47
49
  "css-loader": "^3.0.0",
50
+ "less": "^3.13.1",
51
+ "less-loader": "^5.0.0",
48
52
  "eslint": "^6.0.1",
49
53
  "eslint-config-prettier": "^6.0.0",
50
54
  "eslint-plugin-import": "^2.18.0",
@@ -57,7 +61,7 @@
57
61
  "style-loader": "^0.23.1",
58
62
  "styled-jsx": "^3.2.1",
59
63
  "uglifyjs-webpack-plugin": "^2.2.0",
60
- "webpack": "^4.36.1",
64
+ "webpack": "4.36.1",
61
65
  "webpack-cli": "^3.3.6",
62
66
  "webpack-serve": "3.1.0"
63
67
  },
@@ -3,7 +3,7 @@ module FefferyAntdComponents
3
3
  using Dash
4
4
 
5
5
  const resources_path = realpath(joinpath( @__DIR__, "..", "deps"))
6
- const version = "0.1.4"
6
+ const version = "0.1.7"
7
7
 
8
8
  include("jl/'feffery'_antdaffix.jl")
9
9
  include("jl/'feffery'_antdalert.jl")
@@ -39,6 +39,7 @@ include("jl/'feffery'_antdmodal.jl")
39
39
  include("jl/'feffery'_antdnotification.jl")
40
40
  include("jl/'feffery'_antdpageheader.jl")
41
41
  include("jl/'feffery'_antdpagination.jl")
42
+ include("jl/'feffery'_antdpasteimage.jl")
42
43
  include("jl/'feffery'_antdpopconfirm.jl")
43
44
  include("jl/'feffery'_antdpopover.jl")
44
45
  include("jl/'feffery'_antdprogress.jl")
@@ -64,6 +65,7 @@ include("jl/'feffery'_antdtransfer.jl")
64
65
  include("jl/'feffery'_antdtree.jl")
65
66
  include("jl/'feffery'_antdtreeselect.jl")
66
67
  include("jl/'feffery'_antdupload.jl")
68
+ include("jl/'feffery'_antdwatermark.jl")
67
69
  include("jl/'feffery'_antdcard.jl")
68
70
  include("jl/'feffery'_antdcardgrid.jl")
69
71
  include("jl/'feffery'_antddescriptionitem.jl")
@@ -92,14 +94,14 @@ function __init__()
92
94
  [
93
95
  DashBase.Resource(
94
96
  relative_package_path = "feffery_antd_components.min.js",
95
- external_url = "https://unpkg.com/feffery_antd_components@0.1.4/feffery_antd_components/feffery_antd_components.min.js",
97
+ external_url = "https://unpkg.com/feffery_antd_components@0.1.7/feffery_antd_components/feffery_antd_components.min.js",
96
98
  dynamic = nothing,
97
99
  async = nothing,
98
100
  type = :js
99
101
  ),
100
102
  DashBase.Resource(
101
103
  relative_package_path = "feffery_antd_components.min.js.map",
102
- external_url = "https://unpkg.com/feffery_antd_components@0.1.4/feffery_antd_components/feffery_antd_components.min.js.map",
104
+ external_url = "https://unpkg.com/feffery_antd_components@0.1.7/feffery_antd_components/feffery_antd_components.min.js.map",
103
105
  dynamic = true,
104
106
  async = nothing,
105
107
  type = :js
@@ -9,7 +9,9 @@ An AntdAnchor component.
9
9
 
10
10
  Keyword arguments:
11
11
  - `id` (String; optional)
12
+ - `affix` (Bool; optional)
12
13
  - `align` (a value equal to: 'left', 'right'; optional)
14
+ - `bounds` (Real; optional)
13
15
  - `className` (String; optional)
14
16
  - `containerId` (String; optional)
15
17
  - `linkDict` (optional)
@@ -18,11 +20,12 @@ Those elements have the following types:
18
20
  - `is_loading` (Bool; optional): Determines if the component is loading or not
19
21
  - `prop_name` (String; optional): Holds which property is loading
20
22
  - `component_name` (String; optional): Holds the name of the component that is loading
23
+ - `offsetTop` (Real; optional)
21
24
  - `style` (Dict; optional)
22
25
  - `targetOffset` (Real; optional)
23
26
  """
24
27
  function 'feffery'_antdanchor(; kwargs...)
25
- available_props = Symbol[:id, :align, :className, :containerId, :linkDict, :loading_state, :style, :targetOffset]
28
+ available_props = Symbol[:id, :affix, :align, :bounds, :className, :containerId, :linkDict, :loading_state, :offsetTop, :style, :targetOffset]
26
29
  wild_props = Symbol[]
27
30
  return Component("'feffery'_antdanchor", "AntdAnchor", "feffery_antd_components", available_props, wild_props; kwargs...)
28
31
  end
@@ -18,6 +18,7 @@ Keyword arguments:
18
18
  - `danger` (Bool; optional)
19
19
  - `disabled` (Bool; optional)
20
20
  - `href` (String; optional)
21
+ - `loading` (Bool; optional)
21
22
  - `loading_state` (optional): . loading_state has the following type: lists containing elements 'is_loading', 'prop_name', 'component_name'.
22
23
  Those elements have the following types:
23
24
  - `is_loading` (Bool; optional): Determines if the component is loading or not
@@ -31,7 +32,7 @@ Those elements have the following types:
31
32
  - `type` (a value equal to: 'primary', 'ghost', 'dashed', 'link', 'text', 'default'; optional)
32
33
  """
33
34
  function 'feffery'_antdbutton(; kwargs...)
34
- available_props = Symbol[:children, :id, :block, :className, :danger, :disabled, :href, :loading_state, :nClicks, :shape, :size, :style, :target, :type]
35
+ available_props = Symbol[:children, :id, :block, :className, :danger, :disabled, :href, :loading, :loading_state, :nClicks, :shape, :size, :style, :target, :type]
35
36
  wild_props = Symbol[]
36
37
  return Component("'feffery'_antdbutton", "AntdButton", "feffery_antd_components", available_props, wild_props; kwargs...)
37
38
  end
@@ -40,11 +40,12 @@ session: window.sessionStorage, data is cleared once the browser quit.
40
40
  - `placeholder` (String; optional)
41
41
  - `placement` (a value equal to: 'bottomLeft', 'bottomRight', 'topLeft', 'topRight'; optional)
42
42
  - `size` (a value equal to: 'small', 'middle', 'large'; optional)
43
+ - `status` (a value equal to: 'error', 'warning'; optional)
43
44
  - `style` (Dict; optional)
44
45
  - `value` (Array of Strings | Array of Array of Stringss; optional)
45
46
  """
46
47
  function 'feffery'_antdcascader(; kwargs...)
47
- available_props = Symbol[:id, :bordered, :changeOnSelect, :className, :defaultValue, :disabled, :expandTrigger, :loading_state, :locale, :maxTagCount, :multiple, :options, :persisted_props, :persistence, :persistence_type, :placeholder, :placement, :size, :style, :value]
48
+ available_props = Symbol[:id, :bordered, :changeOnSelect, :className, :defaultValue, :disabled, :expandTrigger, :loading_state, :locale, :maxTagCount, :multiple, :options, :persisted_props, :persistence, :persistence_type, :placeholder, :placement, :size, :status, :style, :value]
48
49
  wild_props = Symbol[]
49
50
  return Component("'feffery'_antdcascader", "AntdCascader", "feffery_antd_components", available_props, wild_props; kwargs...)
50
51
  end
@@ -40,11 +40,12 @@ session: window.sessionStorage, data is cleared once the browser quit.
40
40
  - `placeholder` (String; optional)
41
41
  - `showTime` (Bool; optional)
42
42
  - `size` (a value equal to: 'small', 'middle', 'large'; optional)
43
+ - `status` (a value equal to: 'error', 'warning'; optional)
43
44
  - `style` (Dict; optional)
44
45
  - `value` (String; optional)
45
46
  """
46
47
  function 'feffery'_antddatepicker(; kwargs...)
47
- available_props = Symbol[:id, :allowClear, :bordered, :className, :defaultPickerValue, :defaultValue, :disabled, :disabledDates, :format, :loading_state, :locale, :persisted_props, :persistence, :persistence_type, :picker, :placeholder, :showTime, :size, :style, :value]
48
+ available_props = Symbol[:id, :allowClear, :bordered, :className, :defaultPickerValue, :defaultValue, :disabled, :disabledDates, :format, :loading_state, :locale, :persisted_props, :persistence, :persistence_type, :picker, :placeholder, :showTime, :size, :status, :style, :value]
48
49
  wild_props = Symbol[]
49
50
  return Component("'feffery'_antddatepicker", "AntdDatePicker", "feffery_antd_components", available_props, wild_props; kwargs...)
50
51
  end
@@ -38,11 +38,12 @@ session: window.sessionStorage, data is cleared once the browser quit.
38
38
  - `placeholder` (Array of Strings; optional)
39
39
  - `showTime` (Bool; optional)
40
40
  - `size` (a value equal to: 'small', 'middle', 'large'; optional)
41
+ - `status` (a value equal to: 'error', 'warning'; optional)
41
42
  - `style` (Dict; optional)
42
43
  - `value` (Array of Strings; optional)
43
44
  """
44
45
  function 'feffery'_antddaterangepicker(; kwargs...)
45
- available_props = Symbol[:id, :bordered, :className, :defaultPickerValue, :defaultValue, :disabled, :format, :loading_state, :locale, :persisted_props, :persistence, :persistence_type, :picker, :placeholder, :showTime, :size, :style, :value]
46
+ available_props = Symbol[:id, :bordered, :className, :defaultPickerValue, :defaultValue, :disabled, :format, :loading_state, :locale, :persisted_props, :persistence, :persistence_type, :picker, :placeholder, :showTime, :size, :status, :style, :value]
46
47
  wild_props = Symbol[]
47
48
  return Component("'feffery'_antddaterangepicker", "AntdDateRangePicker", "feffery_antd_components", available_props, wild_props; kwargs...)
48
49
  end
@@ -31,12 +31,13 @@ Those elements have the following types:
31
31
  - `component_name` (String; optional): Holds the name of the component that is loading
32
32
  - `locale` (a value equal to: 'zh-cn', 'en-us'; optional)
33
33
  - `multiple` (Bool; optional)
34
+ - `showUploadList` (Bool; optional)
34
35
  - `style` (Dict; optional)
35
36
  - `text` (String; optional)
36
37
  - `uploadId` (String; optional)
37
38
  """
38
39
  function 'feffery'_antddraggerupload(; kwargs...)
39
- available_props = Symbol[:id, :apiUrl, :className, :directory, :failedTooltipInfo, :fileListMaxLength, :fileMaxSize, :fileTypes, :hint, :lastUploadTaskRecord, :loading_state, :locale, :multiple, :style, :text, :uploadId]
40
+ available_props = Symbol[:id, :apiUrl, :className, :directory, :failedTooltipInfo, :fileListMaxLength, :fileMaxSize, :fileTypes, :hint, :lastUploadTaskRecord, :loading_state, :locale, :multiple, :showUploadList, :style, :text, :uploadId]
40
41
  wild_props = Symbol[]
41
42
  return Component("'feffery'_antddraggerupload", "AntdDraggerUpload", "feffery_antd_components", available_props, wild_props; kwargs...)
42
43
  end
@@ -12,7 +12,7 @@ Keyword arguments:
12
12
  - `alt` (String; optional)
13
13
  - `className` (String; optional)
14
14
  - `fallback` (String; optional)
15
- - `height` (Real; optional)
15
+ - `height` (Real | String; optional)
16
16
  - `loading_state` (optional): . loading_state has the following type: lists containing elements 'is_loading', 'prop_name', 'component_name'.
17
17
  Those elements have the following types:
18
18
  - `is_loading` (Bool; optional): Determines if the component is loading or not
@@ -23,7 +23,7 @@ Those elements have the following types:
23
23
  - `preview` (Bool; optional)
24
24
  - `src` (String | Array of Strings; optional)
25
25
  - `style` (Dict; optional)
26
- - `width` (Real; optional)
26
+ - `width` (Real | String; optional)
27
27
  """
28
28
  function 'feffery'_antdimage(; kwargs...)
29
29
  available_props = Symbol[:id, :alt, :className, :fallback, :height, :loading_state, :locale, :multiImageMode, :preview, :src, :style, :width]
@@ -44,11 +44,12 @@ session: window.sessionStorage, data is cleared once the browser quit.
44
44
  - `placeholder` (String; optional)
45
45
  - `showCount` (Bool; optional)
46
46
  - `size` (a value equal to: 'small', 'middle', 'large'; optional)
47
+ - `status` (a value equal to: 'error', 'warning'; optional)
47
48
  - `style` (Dict; optional)
48
49
  - `value` (String; optional)
49
50
  """
50
51
  function 'feffery'_antdinput(; kwargs...)
51
- available_props = Symbol[:id, :addonAfter, :addonBefore, :allowClear, :autoComplete, :bordered, :className, :defaultValue, :disabled, :loading_state, :maxLength, :md5Value, :mode, :nClicksSearch, :nSubmit, :passwordUseMd5, :persisted_props, :persistence, :persistence_type, :placeholder, :showCount, :size, :style, :value]
52
+ available_props = Symbol[:id, :addonAfter, :addonBefore, :allowClear, :autoComplete, :bordered, :className, :defaultValue, :disabled, :loading_state, :maxLength, :md5Value, :mode, :nClicksSearch, :nSubmit, :passwordUseMd5, :persisted_props, :persistence, :persistence_type, :placeholder, :showCount, :size, :status, :style, :value]
52
53
  wild_props = Symbol[]
53
54
  return Component("'feffery'_antdinput", "AntdInput", "feffery_antd_components", available_props, wild_props; kwargs...)
54
55
  end
@@ -42,13 +42,14 @@ session: window.sessionStorage, data is cleared once the browser quit.
42
42
  - `precision` (Real; optional)
43
43
  - `readOnly` (Bool; optional)
44
44
  - `size` (a value equal to: 'small', 'middle', 'large'; optional)
45
+ - `status` (a value equal to: 'error', 'warning'; optional)
45
46
  - `step` (Real | String; optional)
46
47
  - `stringMode` (Bool; optional)
47
48
  - `style` (Dict; optional)
48
49
  - `value` (Real | String; optional)
49
50
  """
50
51
  function 'feffery'_antdinputnumber(; kwargs...)
51
- available_props = Symbol[:id, :addonAfter, :addonBefore, :bordered, :className, :controls, :defaultValue, :disabled, :keyboard, :loading_state, :max, :min, :nSubmit, :persisted_props, :persistence, :persistence_type, :placeholder, :precision, :readOnly, :size, :step, :stringMode, :style, :value]
52
+ available_props = Symbol[:id, :addonAfter, :addonBefore, :bordered, :className, :controls, :defaultValue, :disabled, :keyboard, :loading_state, :max, :min, :nSubmit, :persisted_props, :persistence, :persistence_type, :placeholder, :precision, :readOnly, :size, :status, :step, :stringMode, :style, :value]
52
53
  wild_props = Symbol[]
53
54
  return Component("'feffery'_antdinputnumber", "AntdInputNumber", "feffery_antd_components", available_props, wild_props; kwargs...)
54
55
  end
@@ -28,11 +28,12 @@ Those elements have the following types:
28
28
  - `placement` (a value equal to: 'top', 'bottom'; optional)
29
29
  - `prefix` (String; optional)
30
30
  - `selectedOptions` (Array of Strings; optional)
31
+ - `status` (a value equal to: 'error', 'warning'; optional)
31
32
  - `style` (Dict; optional)
32
33
  - `value` (String; optional)
33
34
  """
34
35
  function 'feffery'_antdmentions(; kwargs...)
35
- available_props = Symbol[:id, :autoSize, :className, :defaultValue, :disabled, :loading_state, :options, :placement, :prefix, :selectedOptions, :style, :value]
36
+ available_props = Symbol[:id, :autoSize, :className, :defaultValue, :disabled, :loading_state, :options, :placement, :prefix, :selectedOptions, :status, :style, :value]
36
37
  wild_props = Symbol[]
37
38
  return Component("'feffery'_antdmentions", "AntdMentions", "feffery_antd_components", available_props, wild_props; kwargs...)
38
39
  end
@@ -19,10 +19,11 @@ Those elements have the following types:
19
19
  - `prop_name` (String; optional): Holds which property is loading
20
20
  - `component_name` (String; optional): Holds the name of the component that is loading
21
21
  - `style` (Dict; optional)
22
+ - `top` (Real; optional)
22
23
  - `type` (a value equal to: 'default', 'success', 'error', 'info', 'warning'; optional)
23
24
  """
24
25
  function 'feffery'_antdmessage(; kwargs...)
25
- available_props = Symbol[:id, :className, :content, :duration, :icon, :loading_state, :style, :type]
26
+ available_props = Symbol[:id, :className, :content, :duration, :icon, :loading_state, :style, :top, :type]
26
27
  wild_props = Symbol[]
27
28
  return Component("'feffery'_antdmessage", "AntdMessage", "feffery_antd_components", available_props, wild_props; kwargs...)
28
29
  end
@@ -0,0 +1,28 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ export 'feffery'_antdpasteimage
4
+
5
+ """
6
+ 'feffery'_antdpasteimage(;kwargs...)
7
+
8
+ An AntdPasteImage component.
9
+
10
+ Keyword arguments:
11
+ - `id` (String; optional)
12
+ - `className` (String; optional)
13
+ - `currentPastedImages` (Array of Bool | Real | String | Dict | Arrays; optional)
14
+ - `deletedIdx` (Array of Reals; optional)
15
+ - `imageHeight` (Real; optional)
16
+ - `loading_state` (optional): . loading_state has the following type: lists containing elements 'is_loading', 'prop_name', 'component_name'.
17
+ Those elements have the following types:
18
+ - `is_loading` (Bool; optional): Determines if the component is loading or not
19
+ - `prop_name` (String; optional): Holds which property is loading
20
+ - `component_name` (String; optional): Holds the name of the component that is loading
21
+ - `style` (Dict; optional)
22
+ """
23
+ function 'feffery'_antdpasteimage(; kwargs...)
24
+ available_props = Symbol[:id, :className, :currentPastedImages, :deletedIdx, :imageHeight, :loading_state, :style]
25
+ wild_props = Symbol[]
26
+ return Component("'feffery'_antdpasteimage", "AntdPasteImage", "feffery_antd_components", available_props, wild_props; kwargs...)
27
+ end
28
+
@@ -52,12 +52,14 @@ memory: only kept in memory, reset on page refresh.
52
52
  local: window.localStorage, data is kept after the browser quit.
53
53
  session: window.sessionStorage, data is cleared once the browser quit.
54
54
  - `placeholder` (String; optional)
55
+ - `placement` (a value equal to: 'bottomLeft', 'bottomRight', 'topLeft', 'topRight'; optional)
55
56
  - `size` (a value equal to: 'small', 'middle', 'large'; optional)
57
+ - `status` (a value equal to: 'error', 'warning'; optional)
56
58
  - `style` (Dict; optional)
57
59
  - `value` (String | Real | Array of String | Reals; optional)
58
60
  """
59
61
  function 'feffery'_antdselect(; kwargs...)
60
- available_props = Symbol[:id, :allowClear, :className, :colorsMode, :colorsNameWidth, :defaultValue, :disabled, :listHeight, :loading_state, :locale, :maxTagCount, :mode, :options, :persisted_props, :persistence, :persistence_type, :placeholder, :size, :style, :value]
62
+ available_props = Symbol[:id, :allowClear, :className, :colorsMode, :colorsNameWidth, :defaultValue, :disabled, :listHeight, :loading_state, :locale, :maxTagCount, :mode, :options, :persisted_props, :persistence, :persistence_type, :placeholder, :placement, :size, :status, :style, :value]
61
63
  wild_props = Symbol[]
62
64
  return Component("'feffery'_antdselect", "AntdSelect", "feffery_antd_components", available_props, wild_props; kwargs...)
63
65
  end
@@ -12,13 +12,13 @@ Keyword arguments:
12
12
  - `bordered` (Bool; optional)
13
13
  - `className` (String; optional)
14
14
  - `clickedContent` (String; optional)
15
- - `columns` (optional): . columns has the following type: Array of lists containing elements 'title', 'dataIndex', 'renderOptions', 'fixed', 'editable', 'align', 'width', 'ellipsis', 'sorter', 'render', 'title_'.
15
+ - `columns` (optional): . columns has the following type: Array of lists containing elements 'title', 'dataIndex', 'renderOptions', 'fixed', 'editable', 'align', 'width', 'conditionStyle', 'ellipsis', 'sorter', 'render', 'onCell', 'title_'.
16
16
  Those elements have the following types:
17
17
  - `title` (String; required)
18
18
  - `dataIndex` (String; required)
19
19
  - `renderOptions` (optional): . renderOptions has the following type: lists containing elements 'renderType', 'renderLinkText', 'renderButtonPopConfirmProps'.
20
20
  Those elements have the following types:
21
- - `renderType` (a value equal to: 'link', 'ellipsis', 'mini-line', 'mini-bar', 'mini-progress', 'mini-ring-progress', 'mini-area', 'tags', 'button', 'copyable', 'status-badge'; optional)
21
+ - `renderType` (a value equal to: 'link', 'ellipsis', 'mini-line', 'mini-bar', 'mini-progress', 'mini-ring-progress', 'mini-area', 'tags', 'button', 'copyable', 'status-badge', 'image'; optional)
22
22
  - `renderLinkText` (String; optional)
23
23
  - `renderButtonPopConfirmProps` (optional): . renderButtonPopConfirmProps has the following type: lists containing elements 'title', 'okText', 'cancelText'.
24
24
  Those elements have the following types:
@@ -29,9 +29,11 @@ Those elements have the following types:
29
29
  - `editable` (Bool; optional)
30
30
  - `align` (a value equal to: 'left', 'center', 'right'; optional)
31
31
  - `width` (Real | String; optional)
32
+ - `conditionStyle` (String; optional)
32
33
  - `ellipsis` (Bool | Real | String | Dict | Array; optional)
33
34
  - `sorter` (Bool | Real | String | Dict | Array; optional)
34
35
  - `render` (Bool | Real | String | Dict | Array; optional)
36
+ - `onCell` (Bool | Real | String | Dict | Array; optional)
35
37
  - `title_` (String; optional)s
36
38
  - `columnsFormatConstraint` (optional): . columnsFormatConstraint has the following type: Dict with Strings as keys and values of type lists containing elements 'rule', 'content'.
37
39
  Those elements have the following types:
@@ -52,10 +54,20 @@ Those elements have the following types:
52
54
  - `type` (a value equal to: 'primary', 'ghost', 'dashed', 'link', 'text', 'default'; optional)
53
55
  - `danger` (Bool; optional)
54
56
  - `style` (Dict; optional)
55
- - `content` (String | Real; optional) | lists containing elements 'status', 'text'.
57
+ - `content` (String | Real; optional) | Array of lists containing elements 'disabled', 'type', 'danger', 'style', 'content'.
58
+ Those elements have the following types:
59
+ - `disabled` (Bool; optional)
60
+ - `type` (a value equal to: 'primary', 'ghost', 'dashed', 'link', 'text', 'default'; optional)
61
+ - `danger` (Bool; optional)
62
+ - `style` (Dict; optional)
63
+ - `content` (String | Real; optional)s | lists containing elements 'status', 'text'.
56
64
  Those elements have the following types:
57
65
  - `status` (a value equal to: 'success', 'processing', 'default', 'error', 'warning'; optional)
58
- - `text` (String | Real; optional)s
66
+ - `text` (String | Real; optional) | lists containing elements 'src', 'height', 'preview'.
67
+ Those elements have the following types:
68
+ - `src` (String; optional)
69
+ - `height` (String | Real; optional)
70
+ - `preview` (Bool; optional)s
59
71
  - `enableHoverListen` (Bool; optional)
60
72
  - `filter` (Dict; optional)
61
73
  - `filterOptions` (Dict; optional)
@@ -105,7 +117,9 @@ Those elements have the following types:
105
117
  Those elements have the following types:
106
118
  - `columns` (Array of Strings; optional)
107
119
  - `orders` (Array of a value equal to: 'ascend', 'descend's; optional)
108
- - `sticky` (Bool; optional)
120
+ - `sticky` (optional): . sticky has the following type: Bool | lists containing elements 'offsetHeader'.
121
+ Those elements have the following types:
122
+ - `offsetHeader` (Real; optional)
109
123
  - `style` (Dict; optional)
110
124
  - `summaryRowContents` (optional): . summaryRowContents has the following type: Array of lists containing elements 'content', 'colSpan', 'align'.
111
125
  Those elements have the following types:
@@ -39,12 +39,13 @@ session: window.sessionStorage, data is cleared once the browser quit.
39
39
  - `placeholder` (String; optional)
40
40
  - `secondStep` (Real; optional)
41
41
  - `size` (a value equal to: 'small', 'middle', 'large'; optional)
42
+ - `status` (a value equal to: 'error', 'warning'; optional)
42
43
  - `style` (Dict; optional)
43
44
  - `use12Hours` (Bool; optional)
44
45
  - `value` (String; optional)
45
46
  """
46
47
  function 'feffery'_antdtimepicker(; kwargs...)
47
- available_props = Symbol[:id, :allowClear, :bordered, :className, :defaultValue, :disabled, :format, :hourStep, :loading_state, :locale, :minuteStep, :persisted_props, :persistence, :persistence_type, :placeholder, :secondStep, :size, :style, :use12Hours, :value]
48
+ available_props = Symbol[:id, :allowClear, :bordered, :className, :defaultValue, :disabled, :format, :hourStep, :loading_state, :locale, :minuteStep, :persisted_props, :persistence, :persistence_type, :placeholder, :secondStep, :size, :status, :style, :use12Hours, :value]
48
49
  wild_props = Symbol[]
49
50
  return Component("'feffery'_antdtimepicker", "AntdTimePicker", "feffery_antd_components", available_props, wild_props; kwargs...)
50
51
  end
@@ -39,12 +39,13 @@ session: window.sessionStorage, data is cleared once the browser quit.
39
39
  - `placeholder` (Array of Strings; optional)
40
40
  - `secondStep` (Real; optional)
41
41
  - `size` (a value equal to: 'small', 'middle', 'large'; optional)
42
+ - `status` (a value equal to: 'error', 'warning'; optional)
42
43
  - `style` (Dict; optional)
43
44
  - `use12Hours` (Bool; optional)
44
45
  - `value` (Array of Strings; optional)
45
46
  """
46
47
  function 'feffery'_antdtimerangepicker(; kwargs...)
47
- available_props = Symbol[:id, :allowClear, :bordered, :className, :defaultValue, :disabled, :format, :hourStep, :loading_state, :locale, :minuteStep, :persisted_props, :persistence, :persistence_type, :placeholder, :secondStep, :size, :style, :use12Hours, :value]
48
+ available_props = Symbol[:id, :allowClear, :bordered, :className, :defaultValue, :disabled, :format, :hourStep, :loading_state, :locale, :minuteStep, :persisted_props, :persistence, :persistence_type, :placeholder, :secondStep, :size, :status, :style, :use12Hours, :value]
48
49
  wild_props = Symbol[]
49
50
  return Component("'feffery'_antdtimerangepicker", "AntdTimeRangePicker", "feffery_antd_components", available_props, wild_props; kwargs...)
50
51
  end
@@ -11,10 +11,7 @@ Keyword arguments:
11
11
  - `id` (String; optional)
12
12
  - `checkStrictly` (Bool; optional)
13
13
  - `checkable` (Bool; optional)
14
- - `checkedKeys` (optional): . checkedKeys has the following type: Array | lists containing elements 'checked', 'halfChecked'.
15
- Those elements have the following types:
16
- - `checked` (Array; optional)
17
- - `halfChecked` (Array; optional)
14
+ - `checkedKeys` (Array; optional)
18
15
  - `className` (String; optional)
19
16
  - `defaultCheckedKeys` (Array of Strings; optional)
20
17
  - `defaultExpandAll` (Bool; optional)
@@ -22,6 +19,7 @@ Those elements have the following types:
22
19
  - `defaultExpandedKeys` (Array of Strings; optional)
23
20
  - `defaultSelectedKeys` (Array of Strings; optional)
24
21
  - `expandedKeys` (Array of Strings; optional)
22
+ - `halfCheckedKeys` (Array; optional)
25
23
  - `height` (Real; optional)
26
24
  - `loading_state` (optional): . loading_state has the following type: lists containing elements 'is_loading', 'prop_name', 'component_name'.
27
25
  Those elements have the following types:
@@ -52,7 +50,7 @@ Those elements have the following types:
52
50
  - `treeData` (optional)
53
51
  """
54
52
  function 'feffery'_antdtree(; kwargs...)
55
- available_props = Symbol[:id, :checkStrictly, :checkable, :checkedKeys, :className, :defaultCheckedKeys, :defaultExpandAll, :defaultExpandParent, :defaultExpandedKeys, :defaultSelectedKeys, :expandedKeys, :height, :loading_state, :multiple, :persisted_props, :persistence, :persistence_type, :selectable, :selectedKeys, :showIcon, :showLine, :style, :treeData]
53
+ available_props = Symbol[:id, :checkStrictly, :checkable, :checkedKeys, :className, :defaultCheckedKeys, :defaultExpandAll, :defaultExpandParent, :defaultExpandedKeys, :defaultSelectedKeys, :expandedKeys, :halfCheckedKeys, :height, :loading_state, :multiple, :persisted_props, :persistence, :persistence_type, :selectable, :selectedKeys, :showIcon, :showLine, :style, :treeData]
56
54
  wild_props = Symbol[]
57
55
  return Component("'feffery'_antdtree", "AntdTree", "feffery_antd_components", available_props, wild_props; kwargs...)
58
56
  end
@@ -37,7 +37,9 @@ memory: only kept in memory, reset on page refresh.
37
37
  local: window.localStorage, data is kept after the browser quit.
38
38
  session: window.sessionStorage, data is cleared once the browser quit.
39
39
  - `placeholder` (String; optional)
40
+ - `placement` (a value equal to: 'bottomLeft', 'bottomRight', 'topLeft', 'topRight'; optional)
40
41
  - `size` (a value equal to: 'small', 'middle', 'large'; optional)
42
+ - `status` (a value equal to: 'error', 'warning'; optional)
41
43
  - `style` (Dict; optional)
42
44
  - `treeCheckStrictly` (Bool; optional)
43
45
  - `treeCheckable` (Bool; optional)
@@ -50,7 +52,7 @@ session: window.sessionStorage, data is cleared once the browser quit.
50
52
  - `virtual` (Bool; optional)
51
53
  """
52
54
  function 'feffery'_antdtreeselect(; kwargs...)
53
- available_props = Symbol[:id, :allowClear, :bordered, :className, :defaultValue, :disabled, :listHeight, :loading_state, :locale, :maxTagCount, :multiple, :persisted_props, :persistence, :persistence_type, :placeholder, :size, :style, :treeCheckStrictly, :treeCheckable, :treeData, :treeDefaultExpandAll, :treeDefaultExpandedKeys, :treeExpandedKeys, :treeLine, :value, :virtual]
55
+ available_props = Symbol[:id, :allowClear, :bordered, :className, :defaultValue, :disabled, :listHeight, :loading_state, :locale, :maxTagCount, :multiple, :persisted_props, :persistence, :persistence_type, :placeholder, :placement, :size, :status, :style, :treeCheckStrictly, :treeCheckable, :treeData, :treeDefaultExpandAll, :treeDefaultExpandedKeys, :treeExpandedKeys, :treeLine, :value, :virtual]
54
56
  wild_props = Symbol[]
55
57
  return Component("'feffery'_antdtreeselect", "AntdTreeSelect", "feffery_antd_components", available_props, wild_props; kwargs...)
56
58
  end
@@ -23,7 +23,13 @@ Those elements have the following types:
23
23
  - `fileSize` (Real; optional)
24
24
  - `completeTimestamp` (Real; optional)
25
25
  - `taskStatus` (String; optional)
26
- - `taskId` (String; optional)
26
+ - `taskId` (String; optional) | Array of lists containing elements 'fileName', 'fileSize', 'completeTimestamp', 'taskStatus', 'taskId'.
27
+ Those elements have the following types:
28
+ - `fileName` (String; optional)
29
+ - `fileSize` (Real; optional)
30
+ - `completeTimestamp` (Real; optional)
31
+ - `taskStatus` (String; optional)
32
+ - `taskId` (String; optional)s
27
33
  - `loading_state` (optional): . loading_state has the following type: lists containing elements 'is_loading', 'prop_name', 'component_name'.
28
34
  Those elements have the following types:
29
35
  - `is_loading` (Bool; optional): Determines if the component is loading or not
@@ -31,11 +37,12 @@ Those elements have the following types:
31
37
  - `component_name` (String; optional): Holds the name of the component that is loading
32
38
  - `locale` (a value equal to: 'zh-cn', 'en-us'; optional)
33
39
  - `multiple` (Bool; optional)
40
+ - `showUploadList` (Bool; optional)
34
41
  - `style` (Dict; optional)
35
42
  - `uploadId` (String; optional)
36
43
  """
37
44
  function 'feffery'_antdupload(; kwargs...)
38
- available_props = Symbol[:id, :apiUrl, :buttonContent, :className, :directory, :failedTooltipInfo, :fileListMaxLength, :fileMaxSize, :fileTypes, :lastUploadTaskRecord, :loading_state, :locale, :multiple, :style, :uploadId]
45
+ available_props = Symbol[:id, :apiUrl, :buttonContent, :className, :directory, :failedTooltipInfo, :fileListMaxLength, :fileMaxSize, :fileTypes, :lastUploadTaskRecord, :loading_state, :locale, :multiple, :showUploadList, :style, :uploadId]
39
46
  wild_props = Symbol[]
40
47
  return Component("'feffery'_antdupload", "AntdUpload", "feffery_antd_components", available_props, wild_props; kwargs...)
41
48
  end
@@ -0,0 +1,39 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ export 'feffery'_antdwatermark
4
+
5
+ """
6
+ 'feffery'_antdwatermark(;kwargs...)
7
+ 'feffery'_antdwatermark(children::Any;kwargs...)
8
+ 'feffery'_antdwatermark(children_maker::Function;kwargs...)
9
+
10
+
11
+ An AntdWatermark component.
12
+
13
+ Keyword arguments:
14
+ - `children` (a list of or a singular dash component, string or number; optional): The content of the tab - will only be displayed if this tab is selected
15
+ - `id` (String; optional)
16
+ - `className` (String; optional)
17
+ - `content` (String; optional)
18
+ - `fontColor` (String; optional)
19
+ - `fontSize` (Real; optional)
20
+ - `gapX` (Real; optional)
21
+ - `gapY` (Real; optional)
22
+ - `loading_state` (optional): . loading_state has the following type: lists containing elements 'is_loading', 'prop_name', 'component_name'.
23
+ Those elements have the following types:
24
+ - `is_loading` (Bool; optional): Determines if the component is loading or not
25
+ - `prop_name` (String; optional): Holds which property is loading
26
+ - `component_name` (String; optional): Holds the name of the component that is loading
27
+ - `rotate` (Real; optional)
28
+ - `style` (Dict; optional)
29
+ - `zIndex` (Real; optional)
30
+ """
31
+ function 'feffery'_antdwatermark(; kwargs...)
32
+ available_props = Symbol[:children, :id, :className, :content, :fontColor, :fontSize, :gapX, :gapY, :loading_state, :rotate, :style, :zIndex]
33
+ wild_props = Symbol[]
34
+ return Component("'feffery'_antdwatermark", "AntdWatermark", "feffery_antd_components", available_props, wild_props; kwargs...)
35
+ end
36
+
37
+ 'feffery'_antdwatermark(children::Any; kwargs...) = 'feffery'_antdwatermark(;kwargs..., children = children)
38
+ 'feffery'_antdwatermark(children_maker::Function; kwargs...) = 'feffery'_antdwatermark(children_maker(); kwargs...)
39
+