jsgui3-server 0.0.115 → 0.0.116
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.
|
@@ -65,45 +65,6 @@ class Demo_UI extends Active_HTML_Document {
|
|
|
65
65
|
|
|
66
66
|
window.size = [480, 160];
|
|
67
67
|
|
|
68
|
-
// Have Tab_Page items inside???
|
|
69
|
-
|
|
70
|
-
// Setting a 'selectable' property at the composition stage could be very helpful in some cases,
|
|
71
|
-
// May want composition-level mixins?
|
|
72
|
-
// Maybe those mixins would also have code that runs on activation.
|
|
73
|
-
// 'compositional mixins' ???
|
|
74
|
-
|
|
75
|
-
// Need mixins to be very flexible to avoid the probles React had with them.
|
|
76
|
-
// Choose what functionality the mixin provides in some cases.
|
|
77
|
-
// Need to keep tight control over the coupling of mixins.
|
|
78
|
-
// Each mixin may need to be somewhat complex to avoid hiccups - and to consistently act in the set modes.
|
|
79
|
-
// If a mixin is to do something different to before that functionality should be called differently.
|
|
80
|
-
|
|
81
|
-
// mixin.enabled_feature_sets = [feature_set_1_name, feature_set_2_name] ....
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
// Will work on more options & perfection for month_view.
|
|
86
|
-
|
|
87
|
-
/*
|
|
88
|
-
|
|
89
|
-
new Checkbox({
|
|
90
|
-
context,
|
|
91
|
-
label: {
|
|
92
|
-
text: 'A checkbox'
|
|
93
|
-
}
|
|
94
|
-
})
|
|
95
|
-
|
|
96
|
-
*/
|
|
97
|
-
|
|
98
|
-
// Sensible properties like this will help.
|
|
99
|
-
|
|
100
|
-
// A progressively enhancing control could help a lot.
|
|
101
|
-
// Something that when it's in the doc will even replace its own element.
|
|
102
|
-
// Lower level code to enable really simple to express progressive enhancement could help, maybe would not be needed.
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
68
|
|
|
108
69
|
const ti1 = new Text_Field({
|
|
109
70
|
context,
|
|
@@ -183,7 +144,7 @@ class Demo_UI extends Active_HTML_Document {
|
|
|
183
144
|
|
|
184
145
|
// Need to work on having it update the dom with value changes....
|
|
185
146
|
|
|
186
|
-
ti1.
|
|
147
|
+
ti1.model.on('change', e => {
|
|
187
148
|
//console.log('ti1 change e', e);
|
|
188
149
|
|
|
189
150
|
|
|
@@ -199,7 +160,7 @@ class Demo_UI extends Active_HTML_Document {
|
|
|
199
160
|
|
|
200
161
|
|
|
201
162
|
})
|
|
202
|
-
ti2.
|
|
163
|
+
ti2.model.on('change', e => {
|
|
203
164
|
//console.log('ti2 change e', e);
|
|
204
165
|
|
|
205
166
|
//
|
package/package.json
CHANGED
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
"esbuild": "^0.19.5",
|
|
13
13
|
"fnl": "^0.0.30",
|
|
14
14
|
"fnlfs": "^0.0.29",
|
|
15
|
-
"jsgui3-client": "^0.0.
|
|
16
|
-
"jsgui3-html": "^0.0.
|
|
17
|
-
"jsgui3-webpage": "^0.0.
|
|
18
|
-
"jsgui3-website": "^0.0.
|
|
15
|
+
"jsgui3-client": "^0.0.102",
|
|
16
|
+
"jsgui3-html": "^0.0.140",
|
|
17
|
+
"jsgui3-webpage": "^0.0.8",
|
|
18
|
+
"jsgui3-website": "^0.0.8",
|
|
19
19
|
"lang-tools": "^0.0.22",
|
|
20
20
|
"multiparty": "^4.2.3",
|
|
21
21
|
"ncp": "^2.0.0",
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"type": "git",
|
|
41
41
|
"url": "https://github.com/metabench/jsgui3-server.git"
|
|
42
42
|
},
|
|
43
|
-
"version": "0.0.
|
|
43
|
+
"version": "0.0.116"
|
|
44
44
|
}
|