@adcops/autocore-react 3.5.9 → 3.5.13

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.
Files changed (76) hide show
  1. package/dist/components/index.d.ts +4 -0
  2. package/dist/components/index.d.ts.map +1 -1
  3. package/dist/components/index.js +1 -1
  4. package/dist/components/tis-editor/TisConfigEditor.css +11 -0
  5. package/dist/components/tis-editor/TisConfigEditor.d.ts.map +1 -1
  6. package/dist/components/tis-editor/TisConfigEditor.js +1 -1
  7. package/dist/components/tis-editor/editor/AuthoringContext.d.ts +37 -0
  8. package/dist/components/tis-editor/editor/AuthoringContext.d.ts.map +1 -0
  9. package/dist/components/tis-editor/editor/AuthoringContext.js +1 -0
  10. package/dist/components/tis-editor/editor/ChartViewDialog.d.ts +11 -0
  11. package/dist/components/tis-editor/editor/ChartViewDialog.d.ts.map +1 -1
  12. package/dist/components/tis-editor/editor/ChartViewDialog.js +1 -1
  13. package/dist/components/tis-editor/editor/FieldArrayEditor.d.ts.map +1 -1
  14. package/dist/components/tis-editor/editor/FieldArrayEditor.js +1 -1
  15. package/dist/components/tis-editor/editor/RawDataEditor.d.ts.map +1 -1
  16. package/dist/components/tis-editor/editor/RawDataEditor.js +1 -1
  17. package/dist/components/tis-editor/editor/TestFieldDialog.d.ts +7 -0
  18. package/dist/components/tis-editor/editor/TestFieldDialog.d.ts.map +1 -1
  19. package/dist/components/tis-editor/editor/TestFieldDialog.js +1 -1
  20. package/dist/components/tis-editor/editor/ViewsEditor.d.ts.map +1 -1
  21. package/dist/components/tis-editor/editor/ViewsEditor.js +1 -1
  22. package/dist/components/varpick/VariableInput.d.ts +41 -0
  23. package/dist/components/varpick/VariableInput.d.ts.map +1 -0
  24. package/dist/components/varpick/VariableInput.js +1 -0
  25. package/dist/components/varpick/VariablePicker.d.ts +45 -0
  26. package/dist/components/varpick/VariablePicker.d.ts.map +1 -0
  27. package/dist/components/varpick/VariablePicker.js +1 -0
  28. package/dist/components/varpick/index.d.ts +16 -0
  29. package/dist/components/varpick/index.d.ts.map +1 -0
  30. package/dist/components/varpick/index.js +1 -0
  31. package/dist/components/varpick/tisCatalogs.d.ts +85 -0
  32. package/dist/components/varpick/tisCatalogs.d.ts.map +1 -0
  33. package/dist/components/varpick/tisCatalogs.js +1 -0
  34. package/dist/components/varpick/varpick.css +167 -0
  35. package/dist/core/AutoCoreTagContext.d.ts.map +1 -1
  36. package/dist/core/AutoCoreTagContext.js +1 -1
  37. package/dist/core/AutoCoreTagTypes.d.ts +13 -0
  38. package/dist/core/AutoCoreTagTypes.d.ts.map +1 -1
  39. package/dist/hooks/index.d.ts +4 -0
  40. package/dist/hooks/index.d.ts.map +1 -1
  41. package/dist/hooks/index.js +1 -1
  42. package/dist/hooks/useGmVariables.d.ts +57 -0
  43. package/dist/hooks/useGmVariables.d.ts.map +1 -0
  44. package/dist/hooks/useGmVariables.js +1 -0
  45. package/dist/hooks/useSequenceProducers.d.ts +38 -0
  46. package/dist/hooks/useSequenceProducers.d.ts.map +1 -0
  47. package/dist/hooks/useSequenceProducers.js +1 -0
  48. package/package.json +5 -2
  49. package/src/components/index.ts +17 -0
  50. package/src/components/tis-editor/TisConfigEditor.css +11 -0
  51. package/src/components/tis-editor/TisConfigEditor.tsx +31 -0
  52. package/src/components/tis-editor/editor/AuthoringContext.tsx +43 -0
  53. package/src/components/tis-editor/editor/ChartViewDialog.tsx +24 -7
  54. package/src/components/tis-editor/editor/FieldArrayEditor.tsx +1 -0
  55. package/src/components/tis-editor/editor/RawDataEditor.tsx +7 -2
  56. package/src/components/tis-editor/editor/TestFieldDialog.tsx +66 -12
  57. package/src/components/tis-editor/editor/ViewsEditor.tsx +25 -0
  58. package/src/components/varpick/VariableInput.tsx +126 -0
  59. package/src/components/varpick/VariablePicker.tsx +168 -0
  60. package/src/components/varpick/index.ts +22 -0
  61. package/src/components/varpick/tisCatalogs.ts +235 -0
  62. package/src/components/varpick/varpick.css +167 -0
  63. package/src/core/AutoCoreTagContext.tsx +3 -1
  64. package/src/core/AutoCoreTagTypes.ts +14 -0
  65. package/src/hooks/index.ts +11 -0
  66. package/src/hooks/useGmVariables.ts +142 -0
  67. package/src/hooks/useSequenceProducers.ts +104 -0
  68. package/tools/tests/dist/TestFieldDialog-C4mKVh7q.js +32817 -0
  69. package/tools/tests/dist/autocore-react.css +257 -0
  70. package/tools/tests/dist/tis-editor.entry.js +8431 -40567
  71. package/tools/tests/dist/varpick.entry.js +113 -0
  72. package/tools/tests/live-server.probe.mjs +172 -0
  73. package/tools/tests/varpick.entry.tsx +81 -0
  74. package/tools/tests/varpick.test.mjs +208 -0
  75. package/tools/tests/vite.config.mjs +7 -2
  76. 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*/