@adcops/autocore-react 3.5.9 → 3.5.11
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/index.d.ts +4 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/index.js +1 -1
- package/dist/components/tis-editor/TisConfigEditor.css +11 -0
- package/dist/components/tis-editor/TisConfigEditor.d.ts.map +1 -1
- package/dist/components/tis-editor/TisConfigEditor.js +1 -1
- package/dist/components/tis-editor/editor/AuthoringContext.d.ts +37 -0
- package/dist/components/tis-editor/editor/AuthoringContext.d.ts.map +1 -0
- package/dist/components/tis-editor/editor/AuthoringContext.js +1 -0
- package/dist/components/tis-editor/editor/ChartViewDialog.d.ts +11 -0
- package/dist/components/tis-editor/editor/ChartViewDialog.d.ts.map +1 -1
- package/dist/components/tis-editor/editor/ChartViewDialog.js +1 -1
- package/dist/components/tis-editor/editor/FieldArrayEditor.d.ts.map +1 -1
- package/dist/components/tis-editor/editor/FieldArrayEditor.js +1 -1
- package/dist/components/tis-editor/editor/RawDataEditor.d.ts.map +1 -1
- package/dist/components/tis-editor/editor/RawDataEditor.js +1 -1
- package/dist/components/tis-editor/editor/TestFieldDialog.d.ts +7 -0
- package/dist/components/tis-editor/editor/TestFieldDialog.d.ts.map +1 -1
- package/dist/components/tis-editor/editor/TestFieldDialog.js +1 -1
- package/dist/components/tis-editor/editor/ViewsEditor.d.ts.map +1 -1
- package/dist/components/tis-editor/editor/ViewsEditor.js +1 -1
- package/dist/components/varpick/VariableInput.d.ts +41 -0
- package/dist/components/varpick/VariableInput.d.ts.map +1 -0
- package/dist/components/varpick/VariableInput.js +1 -0
- package/dist/components/varpick/VariablePicker.d.ts +45 -0
- package/dist/components/varpick/VariablePicker.d.ts.map +1 -0
- package/dist/components/varpick/VariablePicker.js +1 -0
- package/dist/components/varpick/index.d.ts +16 -0
- package/dist/components/varpick/index.d.ts.map +1 -0
- package/dist/components/varpick/index.js +1 -0
- package/dist/components/varpick/tisCatalogs.d.ts +85 -0
- package/dist/components/varpick/tisCatalogs.d.ts.map +1 -0
- package/dist/components/varpick/tisCatalogs.js +1 -0
- package/dist/components/varpick/varpick.css +167 -0
- package/dist/core/AutoCoreTagContext.d.ts.map +1 -1
- package/dist/core/AutoCoreTagContext.js +1 -1
- package/dist/core/AutoCoreTagTypes.d.ts +13 -0
- package/dist/core/AutoCoreTagTypes.d.ts.map +1 -1
- package/dist/hooks/index.d.ts +4 -0
- package/dist/hooks/index.d.ts.map +1 -1
- package/dist/hooks/index.js +1 -1
- package/dist/hooks/useGmVariables.d.ts +57 -0
- package/dist/hooks/useGmVariables.d.ts.map +1 -0
- package/dist/hooks/useGmVariables.js +1 -0
- package/dist/hooks/useSequenceProducers.d.ts +38 -0
- package/dist/hooks/useSequenceProducers.d.ts.map +1 -0
- package/dist/hooks/useSequenceProducers.js +1 -0
- package/package.json +5 -2
- package/src/components/index.ts +17 -0
- package/src/components/tis-editor/TisConfigEditor.css +11 -0
- package/src/components/tis-editor/TisConfigEditor.tsx +31 -0
- package/src/components/tis-editor/editor/AuthoringContext.tsx +43 -0
- package/src/components/tis-editor/editor/ChartViewDialog.tsx +24 -7
- package/src/components/tis-editor/editor/FieldArrayEditor.tsx +1 -0
- package/src/components/tis-editor/editor/RawDataEditor.tsx +7 -2
- package/src/components/tis-editor/editor/TestFieldDialog.tsx +66 -12
- package/src/components/tis-editor/editor/ViewsEditor.tsx +25 -0
- package/src/components/varpick/VariableInput.tsx +126 -0
- package/src/components/varpick/VariablePicker.tsx +168 -0
- package/src/components/varpick/index.ts +22 -0
- package/src/components/varpick/tisCatalogs.ts +235 -0
- package/src/components/varpick/varpick.css +167 -0
- package/src/core/AutoCoreTagContext.tsx +3 -1
- package/src/core/AutoCoreTagTypes.ts +14 -0
- package/src/hooks/index.ts +11 -0
- package/src/hooks/useGmVariables.ts +142 -0
- package/src/hooks/useSequenceProducers.ts +104 -0
- package/tools/tests/dist/TestFieldDialog-C4mKVh7q.js +32817 -0
- package/tools/tests/dist/autocore-react.css +257 -0
- package/tools/tests/dist/tis-editor.entry.js +8431 -40567
- package/tools/tests/dist/varpick.entry.js +113 -0
- package/tools/tests/live-server.probe.mjs +172 -0
- package/tools/tests/varpick.entry.tsx +81 -0
- package/tools/tests/varpick.test.mjs +208 -0
- package/tools/tests/vite.config.mjs +7 -2
- package/tools/tests/dist/tis-editor.entry.css +0 -90
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
.ac-formsection {
|
|
2
|
-
border: 1px solid var(--surface-d, #e2e8f0);
|
|
3
|
-
border-radius: 6px;
|
|
4
|
-
background: var(--surface-card, #fff);
|
|
5
|
-
margin-bottom: 1rem;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.ac-formsection__header {
|
|
9
|
-
display: flex;
|
|
10
|
-
align-items: flex-start;
|
|
11
|
-
justify-content: space-between;
|
|
12
|
-
padding: 0.5rem 1rem;
|
|
13
|
-
border-bottom: 1px solid var(--surface-d, #e2e8f0);
|
|
14
|
-
background: var(--surface-b, #f8fafc);
|
|
15
|
-
border-top-left-radius: 6px;
|
|
16
|
-
border-top-right-radius: 6px;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.ac-formsection__title {
|
|
20
|
-
margin: 0;
|
|
21
|
-
font-size: 0.95rem;
|
|
22
|
-
font-weight: 600;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.ac-formsection__desc {
|
|
26
|
-
color: var(--text-color-secondary, #64748b);
|
|
27
|
-
display: block;
|
|
28
|
-
margin-top: 0.15rem;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.ac-formsection__actions {
|
|
32
|
-
display: flex;
|
|
33
|
-
gap: 0.5rem;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.ac-formsection__body {
|
|
37
|
-
padding: 0.75rem 1rem;
|
|
38
|
-
display: flex;
|
|
39
|
-
flex-direction: column;
|
|
40
|
-
gap: 0.5rem;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.ac-formrow {
|
|
44
|
-
display: grid;
|
|
45
|
-
grid-template-columns: minmax(8rem, 14rem) 1fr;
|
|
46
|
-
gap: 0.5rem 1rem;
|
|
47
|
-
align-items: start;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.ac-formrow--error .ac-formrow__field input,
|
|
51
|
-
.ac-formrow--error .ac-formrow__field .p-inputtext {
|
|
52
|
-
border-color: #dc2626;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
.ac-formrow__label {
|
|
56
|
-
font-weight: 500;
|
|
57
|
-
padding-top: 0.4rem;
|
|
58
|
-
display: flex;
|
|
59
|
-
flex-direction: column;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
.ac-formrow__required {
|
|
63
|
-
color: #dc2626;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
.ac-formrow__hint {
|
|
67
|
-
color: var(--text-color-secondary, #64748b);
|
|
68
|
-
font-weight: 400;
|
|
69
|
-
font-size: 0.75rem;
|
|
70
|
-
margin-top: 0.15rem;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
.ac-formrow__field {
|
|
74
|
-
display: flex;
|
|
75
|
-
flex-direction: column;
|
|
76
|
-
gap: 0.25rem;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
.ac-formrow__field > input,
|
|
80
|
-
.ac-formrow__field > .p-inputtext,
|
|
81
|
-
.ac-formrow__field > .p-dropdown,
|
|
82
|
-
.ac-formrow__field > .p-inputtextarea {
|
|
83
|
-
width: 100%;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
.ac-formrow__error {
|
|
87
|
-
color: #dc2626;
|
|
88
|
-
font-size: 0.75rem;
|
|
89
|
-
}
|
|
90
|
-
/*$vite$:1*/
|