@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/index.js CHANGED
@@ -3324,6 +3324,10 @@ function registerTextArea(loader) {
3324
3324
  type: "boolean",
3325
3325
  advanced: true,
3326
3326
  defaultValueHint: true
3327
+ },
3328
+ autoSize: {
3329
+ type: "boolean",
3330
+ displayName: "Auto grow height?"
3327
3331
  }
3328
3332
  }, COMMON_EVENT_HANDLERS),
3329
3333
  states: __spreadValues$h({}, COMMON_STATES),
@@ -3851,8 +3855,9 @@ function registerSelect(loader) {
3851
3855
  },
3852
3856
  mode: {
3853
3857
  type: "choice",
3854
- options: ["single", "multiple"],
3855
- defaultValueHint: "single"
3858
+ options: ["single", "multiple", "tags"],
3859
+ defaultValueHint: "single",
3860
+ description: "Whether to allow single or multiple selection. Tags mode additionally allows selecting options outside the specified set of options."
3856
3861
  },
3857
3862
  size: {
3858
3863
  type: "choice",
@@ -3895,6 +3900,12 @@ function registerSelect(loader) {
3895
3900
  defaultValueHint: true,
3896
3901
  advanced: true
3897
3902
  },
3903
+ allowClear: {
3904
+ type: "boolean",
3905
+ displayName: "Allow clearing the Select",
3906
+ defaultValueHint: false,
3907
+ advanced: true
3908
+ },
3898
3909
  triggerClassName: {
3899
3910
  type: "class",
3900
3911
  displayName: "Trigger styles",