@greghowe79/the-lib 1.9.5 → 1.9.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.
@@ -22,8 +22,7 @@ const TextArea = qwik.component$(({ id, title, content, required = false, placeh
22
22
  "bind:value": content,
23
23
  required,
24
24
  placeholder,
25
- class: `text-area ${bgLight ? "bg_light" : ""}`,
26
- children: content.value
25
+ class: `text-area ${bgLight ? "bg_light" : ""}`
27
26
  })
28
27
  ]
29
28
  });
@@ -20,8 +20,7 @@ const TextArea = component$(({ id, title, content, required = false, placeholder
20
20
  "bind:value": content,
21
21
  required,
22
22
  placeholder,
23
- class: `text-area ${bgLight ? "bg_light" : ""}`,
24
- children: content.value
23
+ class: `text-area ${bgLight ? "bg_light" : ""}`
25
24
  })
26
25
  ]
27
26
  });
@@ -10,14 +10,7 @@ type UserProfile = {
10
10
  description: string;
11
11
  email: string;
12
12
  telephone: string | null;
13
- service_title: string;
14
13
  service_description: string;
15
- service_primary_name: string;
16
- service_secondary_name: string;
17
- service_tertiary_name: string;
18
- service_primary_percent: string;
19
- service_secondary_percent: string;
20
- service_tertiary_percent: string;
21
14
  bg_color: string;
22
15
  facebook?: string | null;
23
16
  twitter?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@greghowe79/the-lib",
3
- "version": "1.9.5",
3
+ "version": "1.9.7",
4
4
  "description": "Collection of fast components for Qwik",
5
5
  "main": "./lib/index.qwik.mjs",
6
6
  "qwik": "./lib/index.qwik.mjs",