@wire-dsl/web 0.1.7 → 0.3.0
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/.turbo/turbo-build.log +20 -20
- package/CHANGELOG.md +28 -0
- package/dist/assets/{cssMode-Bb-Bl6k6.js → cssMode-b7jYsTvD.js} +1 -1
- package/dist/assets/{freemarker2-BLa9ze1L.js → freemarker2-CsuF_QRS.js} +1 -1
- package/dist/assets/{handlebars-DenSkK1F.js → handlebars-B21iYX1b.js} +1 -1
- package/dist/assets/{html-xZJ_oBYB.js → html-CD874IyF.js} +1 -1
- package/dist/assets/{htmlMode-8s38pBgf.js → htmlMode-strUsQ5e.js} +1 -1
- package/dist/assets/{index-BXF8OFgs.js → index-DnxonHCR.js} +545 -502
- package/dist/assets/{javascript-DhLTIWMt.js → javascript-BAbpQB4K.js} +1 -1
- package/dist/assets/{jsonMode-DCriA_Ti.js → jsonMode-Dx8YU2rb.js} +1 -1
- package/dist/assets/{liquid-BjJxCtD-.js → liquid-BAcLZKIW.js} +1 -1
- package/dist/assets/{lspLanguageFeatures-BjXufEym.js → lspLanguageFeatures-BxYkzxcV.js} +1 -1
- package/dist/assets/{mdx-TjcJOB9g.js → mdx-r5lCV-h9.js} +1 -1
- package/dist/assets/{python-CHRPTY17.js → python-qarhA9-I.js} +1 -1
- package/dist/assets/{razor-BUw8wD_b.js → razor-B73mQgQW.js} +1 -1
- package/dist/assets/{tsMode-BdnPIbWs.js → tsMode-Ca1QXNNX.js} +1 -1
- package/dist/assets/{typescript-BXf_mWlM.js → typescript-CH6ZgE2t.js} +1 -1
- package/dist/assets/{xml-Dhdg3xWf.js → xml-RSdcph_J.js} +1 -1
- package/dist/assets/{yaml-zjIbOCcp.js → yaml-DBa7i27o.js} +1 -1
- package/dist/examples/admin-dashboard.wire +5 -5
- package/dist/examples/form-example.wire +2 -2
- package/dist/index.html +1 -1
- package/package.json +3 -3
- package/public/examples/admin-dashboard.wire +5 -5
- package/public/examples/form-example.wire +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
project "Admin Dashboard" {
|
|
1
|
+
project "Admin Dashboard" {
|
|
2
2
|
config {
|
|
3
3
|
density: "normal"
|
|
4
4
|
spacing: "md"
|
|
@@ -16,7 +16,7 @@ project "Admin Dashboard" {
|
|
|
16
16
|
|
|
17
17
|
layout stack(direction: vertical, gap: lg, padding: lg) {
|
|
18
18
|
component Heading text: "Users"
|
|
19
|
-
component Text
|
|
19
|
+
component Text text: "Manage system users"
|
|
20
20
|
|
|
21
21
|
layout grid(columns: 12, gap: md) {
|
|
22
22
|
cell span: 8 {
|
|
@@ -37,12 +37,12 @@ project "Admin Dashboard" {
|
|
|
37
37
|
component Breadcrumbs items: "Users,User Details"
|
|
38
38
|
|
|
39
39
|
component Heading text: "User Details"
|
|
40
|
-
component Text
|
|
40
|
+
component Text text: "View and edit user information"
|
|
41
41
|
|
|
42
42
|
layout panel(padding: lg) {
|
|
43
43
|
layout stack(direction: vertical, gap: md) {
|
|
44
44
|
component Heading text: "Account Status"
|
|
45
|
-
component Text
|
|
45
|
+
component Text text: "User account is active and in good standing"
|
|
46
46
|
|
|
47
47
|
component Textarea label: "Bio" placeholder: "User bio and notes..." rows: 4
|
|
48
48
|
|
|
@@ -66,7 +66,7 @@ project "Admin Dashboard" {
|
|
|
66
66
|
screen UserCreate {
|
|
67
67
|
layout stack(direction: vertical, gap: lg, padding: xl) {
|
|
68
68
|
component Heading text: "Create New User"
|
|
69
|
-
component Text
|
|
69
|
+
component Text text: "Add a new user to the system"
|
|
70
70
|
|
|
71
71
|
layout panel(padding: lg) {
|
|
72
72
|
layout stack(direction: vertical, gap: md) {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
project "Form Example" {
|
|
1
|
+
project "Form Example" {
|
|
2
2
|
config {
|
|
3
3
|
density: "normal"
|
|
4
4
|
spacing: "md"
|
|
@@ -11,7 +11,7 @@ project "Form Example" {
|
|
|
11
11
|
layout stack(direction: vertical, gap: md, padding: lg) {
|
|
12
12
|
component Heading text: "User Registration"
|
|
13
13
|
|
|
14
|
-
component Text
|
|
14
|
+
component Text text: "Please fill in all required fields below"
|
|
15
15
|
|
|
16
16
|
layout stack(direction: vertical, gap: md, padding: md) {
|
|
17
17
|
component Input label: "Full Name" placeholder: "John Doe"
|