@plasmicpkgs/antd5 0.0.187 → 0.0.188

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.esm.js CHANGED
@@ -3307,6 +3307,10 @@ function registerTextArea(loader) {
3307
3307
  type: "boolean",
3308
3308
  advanced: true,
3309
3309
  defaultValueHint: true
3310
+ },
3311
+ autoSize: {
3312
+ type: "boolean",
3313
+ displayName: "Auto grow height?"
3310
3314
  }
3311
3315
  }, COMMON_EVENT_HANDLERS),
3312
3316
  states: __spreadValues$h({}, COMMON_STATES),
@@ -3834,8 +3838,9 @@ function registerSelect(loader) {
3834
3838
  },
3835
3839
  mode: {
3836
3840
  type: "choice",
3837
- options: ["single", "multiple"],
3838
- defaultValueHint: "single"
3841
+ options: ["single", "multiple", "tags"],
3842
+ defaultValueHint: "single",
3843
+ description: "Whether to allow single or multiple selection. Tags mode additionally allows selecting options outside the specified set of options."
3839
3844
  },
3840
3845
  size: {
3841
3846
  type: "choice",
@@ -3878,6 +3883,12 @@ function registerSelect(loader) {
3878
3883
  defaultValueHint: true,
3879
3884
  advanced: true
3880
3885
  },
3886
+ allowClear: {
3887
+ type: "boolean",
3888
+ displayName: "Allow clearing the Select",
3889
+ defaultValueHint: false,
3890
+ advanced: true
3891
+ },
3881
3892
  triggerClassName: {
3882
3893
  type: "class",
3883
3894
  displayName: "Trigger styles",