@cloudbase/weda-ui 3.17.3 → 3.17.5

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.
@@ -53,6 +53,30 @@ const classes = [
53
53
  CLASSES.item_help,
54
54
  CLASSES.input_disabled,
55
55
  CLASSES.item_readonly,
56
+ {
57
+ name: '多行输入框内容输入区',
58
+ selector: '.wd-textarea__content',
59
+ description: '多行输入框内容输入区',
60
+ code: `
61
+ :scope .wd-textarea__content {
62
+ font-size: 20px;
63
+ color: gray;
64
+ max-height: 100px;
65
+ overflow: auto;
66
+ }
67
+ `,
68
+ },
69
+ {
70
+ name: '字数',
71
+ selector: '.wd-textarea-textarea__count-text ',
72
+ description: '多行输入框字数',
73
+ code: `
74
+ :scope .wd-textarea-textarea__count-text {
75
+ font-size: 20px;
76
+ color: gray;
77
+ }
78
+ `,
79
+ },
56
80
  ];
57
81
  // export default
58
82
  const config = defineConfig({