tera-system-ui 0.1.34 → 0.1.35

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.
@@ -6,7 +6,7 @@
6
6
  let {
7
7
  children,
8
8
  class: className,
9
- value = $bindable(),
9
+ value = $bindable(""),
10
10
  ref = $bindable(),
11
11
  size,
12
12
  disabled,
@@ -51,8 +51,8 @@
51
51
 
52
52
  $effect(() => {
53
53
  // setup goes here
54
- value
55
- updateSize();
54
+ // value
55
+ // updateSize();
56
56
 
57
57
  return () => {
58
58
  // teardown goes here
@@ -64,12 +64,12 @@
64
64
  value = ''
65
65
  }
66
66
 
67
+ $inspect('text-area', {value})
68
+
67
69
  </script>
68
70
 
69
71
  <div class="relative">
70
72
  <textarea
71
- use:createAutoSizeTextarea={autoSize}
72
- onchange={onchange}
73
73
  bind:this={ref}
74
74
  style={autoSize ? "resize: none;" : ''}
75
75
  class={styles({ variant, disabled , size, className, allowClear })}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tera-system-ui",
3
- "version": "0.1.34",
3
+ "version": "0.1.35",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "npm run customPrepublish && npm run generate-index && vite build && npm run package && npm run postpublish",