sveltekit-ui 1.0.19 → 1.0.21
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/dist/Components/Content/index.svelte.js +0 -1
- package/dist/Components/ContentInput/AttributesInput/index.svelte.js +0 -2
- package/dist/Components/CronInput/index.svelte.js +0 -1
- package/dist/Components/TableAdvanced/index.svelte.js +5 -7
- package/dist/Components/VariablePathInput/index.svelte +1 -1
- package/dist/client/astc_formatting/index.js +1 -1
- package/package.json +6 -6
- package/src/lib/Components/Content/index.svelte.js +0 -1
- package/src/lib/Components/ContentInput/AttributesInput/index.svelte.js +0 -2
- package/src/lib/Components/CronInput/index.svelte.js +0 -1
- package/src/lib/Components/TableAdvanced/index.svelte.js +5 -7
- package/src/lib/Components/VariablePathInput/index.svelte +1 -1
- package/src/lib/client/astc_formatting/index.js +1 -1
- package/src/routes/[component]/Showcase/TableAdvanced/index.svelte +60 -227
|
@@ -114,7 +114,6 @@ export function create_content_manager(config) {
|
|
|
114
114
|
return
|
|
115
115
|
}
|
|
116
116
|
let cleaned_path = clean_variable_path(path)
|
|
117
|
-
console.log("path77", { cleaned_path, path })
|
|
118
117
|
if (typeof config?.on_event == "function") {
|
|
119
118
|
if (type == "insert") {
|
|
120
119
|
return config?.on_event({
|
|
@@ -49,11 +49,9 @@ export function create_attributes_input_manager(config) {
|
|
|
49
49
|
]
|
|
50
50
|
|
|
51
51
|
function init(config) {
|
|
52
|
-
console.log("dt_yyy", config?.defined_data_type)
|
|
53
52
|
val_original = set_closurable(config?.val, null)
|
|
54
53
|
content_type = config?.content_type
|
|
55
54
|
defined_data_type = config?.defined_data_type
|
|
56
|
-
console.log("att_defined_data_type", defined_data_type)
|
|
57
55
|
popover_manager = create_popover_manager({
|
|
58
56
|
header: config?.header ?? "Edit Attributes",
|
|
59
57
|
type: "panel",
|
|
@@ -646,12 +646,10 @@ export function create_table_advanced_manager(config) {
|
|
|
646
646
|
})
|
|
647
647
|
.map(([column_id, val]) => {
|
|
648
648
|
if (val?.is_autogenerated) {
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
// column_id,
|
|
654
|
-
// ])
|
|
649
|
+
let guessed_column_display_content = variables_data_type_remaining_to_astc(val?.db_data_type, "display", [
|
|
650
|
+
row_edit_def_identifier,
|
|
651
|
+
column_id,
|
|
652
|
+
])
|
|
655
653
|
return {
|
|
656
654
|
type_id: "div",
|
|
657
655
|
selector_id: create_unique_id(null, 8),
|
|
@@ -675,7 +673,7 @@ export function create_table_advanced_manager(config) {
|
|
|
675
673
|
],
|
|
676
674
|
attributes: {},
|
|
677
675
|
},
|
|
678
|
-
|
|
676
|
+
guessed_column_display_content,
|
|
679
677
|
{
|
|
680
678
|
type_id: "br",
|
|
681
679
|
selector_id: create_unique_id(null, 8),
|
|
@@ -19,7 +19,6 @@
|
|
|
19
19
|
<p>{manager?.val_text}</p>
|
|
20
20
|
<Dropdown manager={manager?.def_dropdown_manager} />
|
|
21
21
|
{#if manager?.def_dropdown_manager?.val}
|
|
22
|
-
<Button manager={manager?.add_path_item_button_manager} />
|
|
23
22
|
<p class="label">Path Items (optional)</p>
|
|
24
23
|
{#if Array.isArray(manager?.path_prepped) && manager?.path_prepped.length > 0}
|
|
25
24
|
{#each manager?.path_prepped as path_item}
|
|
@@ -54,6 +53,7 @@
|
|
|
54
53
|
{:else}
|
|
55
54
|
<p>No Path Items</p>
|
|
56
55
|
{/if}
|
|
56
|
+
<Button manager={manager?.add_path_item_button_manager} />
|
|
57
57
|
{/if}
|
|
58
58
|
</div>
|
|
59
59
|
{/snippet}
|
|
@@ -673,7 +673,7 @@ export function variables_data_type_remaining_to_astc(
|
|
|
673
673
|
if (preferred_content_use == "input") {
|
|
674
674
|
return astc_element("dropdown", [], {
|
|
675
675
|
options: time_zone_options,
|
|
676
|
-
|
|
676
|
+
is_button_compressed: true,
|
|
677
677
|
val_from_variable_path: leading_variable_path,
|
|
678
678
|
...(variables_data_type_remaining?.attributes ?? {}),
|
|
679
679
|
})
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sveltekit-ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.21",
|
|
4
4
|
"description": "A SvelteKit UI component library for building modern web applications",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -19,19 +19,19 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"context-filter-polyfill": "^0.3.23",
|
|
21
21
|
"qr-code-styling": "^1.9.2",
|
|
22
|
-
"svelte": "^5.38.
|
|
22
|
+
"svelte": "^5.38.1"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
25
|
"@sveltejs/kit": "^2.22.2"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@sveltejs/adapter-vercel": "^5.
|
|
29
|
-
"@sveltejs/kit": "^2.
|
|
28
|
+
"@sveltejs/adapter-vercel": "^5.9.1",
|
|
29
|
+
"@sveltejs/kit": "^2.31.1",
|
|
30
30
|
"@sveltejs/package": "^2.4.1",
|
|
31
|
-
"@sveltejs/vite-plugin-svelte": "^6.1.
|
|
31
|
+
"@sveltejs/vite-plugin-svelte": "^6.1.2",
|
|
32
32
|
"@vercel/analytics": "^1.5.0",
|
|
33
33
|
"typescript": "^5.9.2",
|
|
34
|
-
"vite": "^7.1.
|
|
34
|
+
"vite": "^7.1.2"
|
|
35
35
|
},
|
|
36
36
|
"homepage": "https://www.sveltekit-ui.com",
|
|
37
37
|
"keywords": [
|
|
@@ -114,7 +114,6 @@ export function create_content_manager(config) {
|
|
|
114
114
|
return
|
|
115
115
|
}
|
|
116
116
|
let cleaned_path = clean_variable_path(path)
|
|
117
|
-
console.log("path77", { cleaned_path, path })
|
|
118
117
|
if (typeof config?.on_event == "function") {
|
|
119
118
|
if (type == "insert") {
|
|
120
119
|
return config?.on_event({
|
|
@@ -49,11 +49,9 @@ export function create_attributes_input_manager(config) {
|
|
|
49
49
|
]
|
|
50
50
|
|
|
51
51
|
function init(config) {
|
|
52
|
-
console.log("dt_yyy", config?.defined_data_type)
|
|
53
52
|
val_original = set_closurable(config?.val, null)
|
|
54
53
|
content_type = config?.content_type
|
|
55
54
|
defined_data_type = config?.defined_data_type
|
|
56
|
-
console.log("att_defined_data_type", defined_data_type)
|
|
57
55
|
popover_manager = create_popover_manager({
|
|
58
56
|
header: config?.header ?? "Edit Attributes",
|
|
59
57
|
type: "panel",
|
|
@@ -646,12 +646,10 @@ export function create_table_advanced_manager(config) {
|
|
|
646
646
|
})
|
|
647
647
|
.map(([column_id, val]) => {
|
|
648
648
|
if (val?.is_autogenerated) {
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
// column_id,
|
|
654
|
-
// ])
|
|
649
|
+
let guessed_column_display_content = variables_data_type_remaining_to_astc(val?.db_data_type, "display", [
|
|
650
|
+
row_edit_def_identifier,
|
|
651
|
+
column_id,
|
|
652
|
+
])
|
|
655
653
|
return {
|
|
656
654
|
type_id: "div",
|
|
657
655
|
selector_id: create_unique_id(null, 8),
|
|
@@ -675,7 +673,7 @@ export function create_table_advanced_manager(config) {
|
|
|
675
673
|
],
|
|
676
674
|
attributes: {},
|
|
677
675
|
},
|
|
678
|
-
|
|
676
|
+
guessed_column_display_content,
|
|
679
677
|
{
|
|
680
678
|
type_id: "br",
|
|
681
679
|
selector_id: create_unique_id(null, 8),
|
|
@@ -19,7 +19,6 @@
|
|
|
19
19
|
<p>{manager?.val_text}</p>
|
|
20
20
|
<Dropdown manager={manager?.def_dropdown_manager} />
|
|
21
21
|
{#if manager?.def_dropdown_manager?.val}
|
|
22
|
-
<Button manager={manager?.add_path_item_button_manager} />
|
|
23
22
|
<p class="label">Path Items (optional)</p>
|
|
24
23
|
{#if Array.isArray(manager?.path_prepped) && manager?.path_prepped.length > 0}
|
|
25
24
|
{#each manager?.path_prepped as path_item}
|
|
@@ -54,6 +53,7 @@
|
|
|
54
53
|
{:else}
|
|
55
54
|
<p>No Path Items</p>
|
|
56
55
|
{/if}
|
|
56
|
+
<Button manager={manager?.add_path_item_button_manager} />
|
|
57
57
|
{/if}
|
|
58
58
|
</div>
|
|
59
59
|
{/snippet}
|
|
@@ -673,7 +673,7 @@ export function variables_data_type_remaining_to_astc(
|
|
|
673
673
|
if (preferred_content_use == "input") {
|
|
674
674
|
return astc_element("dropdown", [], {
|
|
675
675
|
options: time_zone_options,
|
|
676
|
-
|
|
676
|
+
is_button_compressed: true,
|
|
677
677
|
val_from_variable_path: leading_variable_path,
|
|
678
678
|
...(variables_data_type_remaining?.attributes ?? {}),
|
|
679
679
|
})
|
|
@@ -4,226 +4,6 @@
|
|
|
4
4
|
import { PUBLIC_APPLE_MAPKIT_JS_API_KEY } from "$env/static/public"
|
|
5
5
|
import { deep_copy } from "$lib/client/index.js"
|
|
6
6
|
|
|
7
|
-
const test_row_input_content = {
|
|
8
|
-
type_id: "div",
|
|
9
|
-
selector_id: "div_jxhvczqm",
|
|
10
|
-
children: [
|
|
11
|
-
{
|
|
12
|
-
type_id: "div",
|
|
13
|
-
selector_id: "div_hghtjdix",
|
|
14
|
-
children: [
|
|
15
|
-
{
|
|
16
|
-
type_id: "span",
|
|
17
|
-
selector_id: "span_pnxoxyns",
|
|
18
|
-
children: [
|
|
19
|
-
{
|
|
20
|
-
type_id: "strong",
|
|
21
|
-
selector_id: "strong_wzqcpnxy",
|
|
22
|
-
children: [],
|
|
23
|
-
attributes: {
|
|
24
|
-
content: "id",
|
|
25
|
-
},
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
type_id: "em",
|
|
29
|
-
selector_id: "em_vdjulmfu",
|
|
30
|
-
children: [],
|
|
31
|
-
attributes: {
|
|
32
|
-
content: " autogenerated ",
|
|
33
|
-
},
|
|
34
|
-
},
|
|
35
|
-
],
|
|
36
|
-
attributes: {},
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
type_id: "base_text",
|
|
40
|
-
selector_id: "dvobhkqp",
|
|
41
|
-
children: [],
|
|
42
|
-
attributes: {
|
|
43
|
-
content_from_variable_path: ["rows", ["row_i"], "id"],
|
|
44
|
-
size: 10,
|
|
45
|
-
},
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
type_id: "br",
|
|
49
|
-
selector_id: "br_gqfqxajt",
|
|
50
|
-
children: [],
|
|
51
|
-
attributes: {},
|
|
52
|
-
},
|
|
53
|
-
],
|
|
54
|
-
attributes: {},
|
|
55
|
-
},
|
|
56
|
-
{
|
|
57
|
-
type_id: "div",
|
|
58
|
-
selector_id: "div_escitwrx",
|
|
59
|
-
children: [
|
|
60
|
-
{
|
|
61
|
-
type_id: "div",
|
|
62
|
-
selector_id: "ymcklbcy",
|
|
63
|
-
children: [
|
|
64
|
-
{
|
|
65
|
-
type_id: "div",
|
|
66
|
-
selector_id: "drsdciju",
|
|
67
|
-
children: [
|
|
68
|
-
{
|
|
69
|
-
type_id: "base_text",
|
|
70
|
-
selector_id: "oejzzhrk",
|
|
71
|
-
children: [],
|
|
72
|
-
attributes: {
|
|
73
|
-
content: "label:",
|
|
74
|
-
},
|
|
75
|
-
},
|
|
76
|
-
{
|
|
77
|
-
type_id: "text_input",
|
|
78
|
-
selector_id: "lkblpxsl",
|
|
79
|
-
children: [],
|
|
80
|
-
attributes: {
|
|
81
|
-
val_from_variable_path: ["rows", ["row_i"], "label"],
|
|
82
|
-
},
|
|
83
|
-
},
|
|
84
|
-
],
|
|
85
|
-
attributes: {},
|
|
86
|
-
},
|
|
87
|
-
],
|
|
88
|
-
attributes: {
|
|
89
|
-
val_from_variable_path: ["rows", ["row_i"], "label"],
|
|
90
|
-
},
|
|
91
|
-
},
|
|
92
|
-
],
|
|
93
|
-
attributes: {},
|
|
94
|
-
},
|
|
95
|
-
{
|
|
96
|
-
type_id: "div",
|
|
97
|
-
selector_id: "div_escitwrx",
|
|
98
|
-
children: [
|
|
99
|
-
{
|
|
100
|
-
type_id: "div",
|
|
101
|
-
selector_id: "ymcklbcy",
|
|
102
|
-
children: [
|
|
103
|
-
{
|
|
104
|
-
type_id: "div",
|
|
105
|
-
selector_id: "drsdciju",
|
|
106
|
-
children: [
|
|
107
|
-
{
|
|
108
|
-
type_id: "base_text",
|
|
109
|
-
selector_id: "oejzzhrk",
|
|
110
|
-
children: [],
|
|
111
|
-
attributes: {
|
|
112
|
-
content: "fav_color:",
|
|
113
|
-
},
|
|
114
|
-
},
|
|
115
|
-
{
|
|
116
|
-
type_id: "color_input",
|
|
117
|
-
selector_id: "lkblpxsl",
|
|
118
|
-
children: [],
|
|
119
|
-
attributes: {
|
|
120
|
-
val_from_variable_path: ["rows", ["row_i"], "fav_color"],
|
|
121
|
-
},
|
|
122
|
-
},
|
|
123
|
-
],
|
|
124
|
-
attributes: {},
|
|
125
|
-
},
|
|
126
|
-
],
|
|
127
|
-
attributes: {
|
|
128
|
-
val_from_variable_path: ["rows", ["row_i"], "fav_color"],
|
|
129
|
-
},
|
|
130
|
-
},
|
|
131
|
-
],
|
|
132
|
-
attributes: {},
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
type_id: "div",
|
|
136
|
-
selector_id: "div_erlnynoa",
|
|
137
|
-
children: [
|
|
138
|
-
{
|
|
139
|
-
type_id: "span",
|
|
140
|
-
selector_id: "span_zhksqepo",
|
|
141
|
-
children: [
|
|
142
|
-
{
|
|
143
|
-
type_id: "strong",
|
|
144
|
-
selector_id: "strong_gxtxtoar",
|
|
145
|
-
children: [],
|
|
146
|
-
attributes: {
|
|
147
|
-
content: "db_epoch_created",
|
|
148
|
-
},
|
|
149
|
-
},
|
|
150
|
-
{
|
|
151
|
-
type_id: "em",
|
|
152
|
-
selector_id: "em_zmhymiri",
|
|
153
|
-
children: [],
|
|
154
|
-
attributes: {
|
|
155
|
-
content: " autogenerated ",
|
|
156
|
-
},
|
|
157
|
-
},
|
|
158
|
-
],
|
|
159
|
-
attributes: {},
|
|
160
|
-
},
|
|
161
|
-
{
|
|
162
|
-
type_id: "time",
|
|
163
|
-
selector_id: "fiujqeqz",
|
|
164
|
-
children: [],
|
|
165
|
-
attributes: {
|
|
166
|
-
format: "epoch",
|
|
167
|
-
val_from_variable_path: ["rows", ["row_i"], "db_epoch_created"],
|
|
168
|
-
},
|
|
169
|
-
},
|
|
170
|
-
{
|
|
171
|
-
type_id: "br",
|
|
172
|
-
selector_id: "br_ncfvgeks",
|
|
173
|
-
children: [],
|
|
174
|
-
attributes: {},
|
|
175
|
-
},
|
|
176
|
-
],
|
|
177
|
-
attributes: {},
|
|
178
|
-
},
|
|
179
|
-
{
|
|
180
|
-
type_id: "div",
|
|
181
|
-
selector_id: "div_ctqanaev",
|
|
182
|
-
children: [
|
|
183
|
-
{
|
|
184
|
-
type_id: "span",
|
|
185
|
-
selector_id: "span_egiboqfu",
|
|
186
|
-
children: [
|
|
187
|
-
{
|
|
188
|
-
type_id: "strong",
|
|
189
|
-
selector_id: "strong_jnvuzdvr",
|
|
190
|
-
children: [],
|
|
191
|
-
attributes: {
|
|
192
|
-
content: "db_epoch_updated",
|
|
193
|
-
},
|
|
194
|
-
},
|
|
195
|
-
{
|
|
196
|
-
type_id: "em",
|
|
197
|
-
selector_id: "em_nvxliucw",
|
|
198
|
-
children: [],
|
|
199
|
-
attributes: {
|
|
200
|
-
content: " autogenerated ",
|
|
201
|
-
},
|
|
202
|
-
},
|
|
203
|
-
],
|
|
204
|
-
attributes: {},
|
|
205
|
-
},
|
|
206
|
-
{
|
|
207
|
-
type_id: "time",
|
|
208
|
-
selector_id: "ubzlhrul",
|
|
209
|
-
children: [],
|
|
210
|
-
attributes: {
|
|
211
|
-
format: "epoch",
|
|
212
|
-
val_from_variable_path: ["rows", ["row_i"], "db_epoch_updated"],
|
|
213
|
-
},
|
|
214
|
-
},
|
|
215
|
-
{
|
|
216
|
-
type_id: "br",
|
|
217
|
-
selector_id: "br_wtxsndxh",
|
|
218
|
-
children: [],
|
|
219
|
-
attributes: {},
|
|
220
|
-
},
|
|
221
|
-
],
|
|
222
|
-
attributes: {},
|
|
223
|
-
},
|
|
224
|
-
],
|
|
225
|
-
}
|
|
226
|
-
|
|
227
7
|
let data = $state({
|
|
228
8
|
id: "cbsemvrsoidhrzyhugue",
|
|
229
9
|
name: "test",
|
|
@@ -244,7 +24,7 @@
|
|
|
244
24
|
children: [],
|
|
245
25
|
attributes: {
|
|
246
26
|
size: 10,
|
|
247
|
-
content_from_variable_path: ["
|
|
27
|
+
content_from_variable_path: ["rows", ["row_i"], "id"],
|
|
248
28
|
},
|
|
249
29
|
selector_id: "hcsqz",
|
|
250
30
|
},
|
|
@@ -357,7 +137,7 @@
|
|
|
357
137
|
children: [],
|
|
358
138
|
attributes: {
|
|
359
139
|
format: "epoch",
|
|
360
|
-
val_from_variable_path: ["
|
|
140
|
+
val_from_variable_path: ["rows", ["row_i"], "db_epoch_created"],
|
|
361
141
|
},
|
|
362
142
|
selector_id: "time_urzjm",
|
|
363
143
|
},
|
|
@@ -394,7 +174,7 @@
|
|
|
394
174
|
children: [],
|
|
395
175
|
attributes: {
|
|
396
176
|
format: "epoch",
|
|
397
|
-
val_from_variable_path: ["
|
|
177
|
+
val_from_variable_path: ["rows", ["row_i"], "db_epoch_updated"],
|
|
398
178
|
},
|
|
399
179
|
selector_id: "epoch_rozyy",
|
|
400
180
|
},
|
|
@@ -430,9 +210,62 @@
|
|
|
430
210
|
let table_manager = $state(null)
|
|
431
211
|
let variables = $state({
|
|
432
212
|
rows: [
|
|
433
|
-
{
|
|
434
|
-
|
|
435
|
-
|
|
213
|
+
{
|
|
214
|
+
id: "zuetqjdinawjrvftztif",
|
|
215
|
+
us_state: "Ohio",
|
|
216
|
+
population: 11700000,
|
|
217
|
+
db_epoch_created: 1734451200,
|
|
218
|
+
db_epoch_updated: 1734451200,
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
id: "blwigkbhwbrdrpfgtjht",
|
|
222
|
+
us_state: "California",
|
|
223
|
+
population: 39500000,
|
|
224
|
+
db_epoch_created: 1734451200,
|
|
225
|
+
db_epoch_updated: 1734451200,
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
id: "szjefrcsfaovgqgbvomk",
|
|
229
|
+
us_state: "Texas",
|
|
230
|
+
population: 29000000,
|
|
231
|
+
db_epoch_created: 1734451200,
|
|
232
|
+
db_epoch_updated: 1734451200,
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
id: "idyqhgokgtootefrpjlk",
|
|
236
|
+
us_state: "Florida",
|
|
237
|
+
population: 21500000,
|
|
238
|
+
db_epoch_created: 1734451200,
|
|
239
|
+
db_epoch_updated: 1734451200,
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
id: "fsbdlpaujxcbenalzxrd",
|
|
243
|
+
us_state: "New York",
|
|
244
|
+
population: 19400000,
|
|
245
|
+
db_epoch_created: 1734451200,
|
|
246
|
+
db_epoch_updated: 1734451200,
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
id: "lgljuheyjeuhuxffxqrw",
|
|
250
|
+
us_state: "Illinois",
|
|
251
|
+
population: 12600000,
|
|
252
|
+
db_epoch_created: 1734451200,
|
|
253
|
+
db_epoch_updated: 1734451200,
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
id: "ydhrlhktgyvjyuenxsfl",
|
|
257
|
+
us_state: "Pennsylvania",
|
|
258
|
+
population: 12800000,
|
|
259
|
+
db_epoch_created: 1734451200,
|
|
260
|
+
db_epoch_updated: 1734451200,
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
id: "jqruaftavlvjkbzmcifm",
|
|
264
|
+
us_state: "Georgia",
|
|
265
|
+
population: 10700000,
|
|
266
|
+
db_epoch_created: 1734451200,
|
|
267
|
+
db_epoch_updated: 1734451200,
|
|
268
|
+
},
|
|
436
269
|
],
|
|
437
270
|
})
|
|
438
271
|
|
|
@@ -613,6 +446,6 @@
|
|
|
613
446
|
</script>
|
|
614
447
|
|
|
615
448
|
<div>
|
|
616
|
-
<pre>{JSON.stringify(variables, null, 2)}</pre>
|
|
449
|
+
<!-- <pre>{JSON.stringify(variables, null, 2)}</pre> -->
|
|
617
450
|
<TableAdvanced manager={table_manager} />
|
|
618
451
|
</div>
|