@truedat/df 5.4.3 → 5.5.1

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 (30) hide show
  1. package/package.json +8 -8
  2. package/src/components/FieldGroupSubSegment/__tests__/__snapshots__/FieldGroupSubSegment.spec.js.snap +38 -38
  3. package/src/components/__tests__/__snapshots__/DynamicFieldValue.spec.js.snap +2 -2
  4. package/src/components/__tests__/__snapshots__/DynamicForm.spec.js.snap +17 -17
  5. package/src/components/__tests__/__snapshots__/EditableDynamicFieldValue.spec.js.snap +1 -1
  6. package/src/components/__tests__/__snapshots__/FieldGroupDetail.spec.js.snap +3 -3
  7. package/src/components/hierarchies/__tests__/__snapshots__/HierarchyCrumbs.spec.js.snap +1 -1
  8. package/src/components/widgets/CopyField/__tests__/__snapshots__/CopyField.spec.js.snap +33 -33
  9. package/src/components/widgets/CopyField/__tests__/__snapshots__/CopyFieldCell.spec.js.snap +4 -4
  10. package/src/components/widgets/CopyField/__tests__/__snapshots__/CopyFieldColumn.spec.js.snap +1 -1
  11. package/src/components/widgets/CopyField/__tests__/__snapshots__/CopyFieldSelectableCell.spec.js.snap +8 -8
  12. package/src/components/widgets/__tests__/__snapshots__/CheckboxField.spec.js.snap +1 -1
  13. package/src/components/widgets/__tests__/__snapshots__/ColorPickerField.spec.js.snap +3 -3
  14. package/src/components/widgets/__tests__/__snapshots__/DomainPreview.spec.js.snap +1 -1
  15. package/src/components/widgets/__tests__/__snapshots__/ImageField.spec.js.snap +2 -2
  16. package/src/components/widgets/__tests__/__snapshots__/PairListField.spec.js.snap +1 -1
  17. package/src/components/widgets/__tests__/__snapshots__/RadioField.spec.js.snap +1 -1
  18. package/src/components/widgets/__tests__/__snapshots__/StandardDropdown.spec.js.snap +4 -4
  19. package/src/components/widgets/__tests__/__snapshots__/StringField.spec.js.snap +4 -4
  20. package/src/components/widgets/__tests__/__snapshots__/TableField.spec.js.snap +3 -3
  21. package/src/templates/components/__tests__/__snapshots__/NewTemplate.spec.js.snap +1 -1
  22. package/src/templates/components/__tests__/__snapshots__/TemplateCards.spec.js.snap +3 -3
  23. package/src/templates/components/templateForm/__tests__/__snapshots__/ActiveGroupForm.spec.js.snap +13 -13
  24. package/src/templates/components/templateForm/__tests__/__snapshots__/DefaultValue.spec.js.snap +3 -3
  25. package/src/templates/components/templateForm/__tests__/__snapshots__/FieldForm.spec.js.snap +181 -181
  26. package/src/templates/components/templateForm/__tests__/__snapshots__/SwitchListForm.spec.js.snap +2 -2
  27. package/src/templates/components/templateForm/__tests__/__snapshots__/TemplateFormActions.spec.js.snap +3 -3
  28. package/src/templates/components/templateForm/__tests__/__snapshots__/ValuesField.spec.js.snap +27 -27
  29. package/src/templates/components/templateForm/__tests__/__snapshots__/ValuesSelector.spec.js.snap +1 -1
  30. package/CHANGELOG.md +0 -668
@@ -20,7 +20,7 @@ exports[`<SwitchListForm /> matches the latest snapshot for null values 1`] = `
20
20
  key="a"
21
21
  title="a"
22
22
  value={
23
- Array [
23
+ [
24
24
  "1",
25
25
  "2",
26
26
  ]
@@ -33,7 +33,7 @@ exports[`<SwitchListForm /> matches the latest snapshot for null values 1`] = `
33
33
  key="b"
34
34
  title="b"
35
35
  value={
36
- Array [
36
+ [
37
37
  "3",
38
38
  "4",
39
39
  ]
@@ -9,7 +9,7 @@ exports[`<TemplateFormActions /> matches the latest snapshot (deleting) 1`] = `
9
9
  <Memo(MemoizedFormattedMessage)
10
10
  id="template.actions.delete.confirmation.content"
11
11
  values={
12
- Object {
12
+ {
13
13
  "name": <i>
14
14
  Name
15
15
  </i>,
@@ -62,7 +62,7 @@ exports[`<TemplateFormActions /> matches the latest snapshot (saving) 1`] = `
62
62
  <Memo(MemoizedFormattedMessage)
63
63
  id="template.actions.delete.confirmation.content"
64
64
  values={
65
- Object {
65
+ {
66
66
  "name": <i>
67
67
  Name
68
68
  </i>,
@@ -115,7 +115,7 @@ exports[`<TemplateFormActions /> matches the latest snapshot 1`] = `
115
115
  <Memo(MemoizedFormattedMessage)
116
116
  id="template.actions.delete.confirmation.content"
117
117
  values={
118
- Object {
118
+ {
119
119
  "name": <i>
120
120
  Name
121
121
  </i>,
@@ -4,9 +4,9 @@ exports[`<ValuesField /> fixed matches the latest snapshot for null values 1`] =
4
4
  <Segment>
5
5
  <DefaultValue
6
6
  field={
7
- Object {
8
- "values": Object {
9
- "fixed": Array [
7
+ {
8
+ "values": {
9
+ "fixed": [
10
10
  "Foo",
11
11
  "Bar",
12
12
  ],
@@ -27,8 +27,8 @@ exports[`<ValuesField /> fixed_tuple matches the latest snapshot for null values
27
27
  onChange={[MockFunction]}
28
28
  type="fixed_tuple"
29
29
  values={
30
- Array [
31
- Object {
30
+ [
31
+ {
32
32
  "text": "Bar",
33
33
  "value": "Foo",
34
34
  },
@@ -44,10 +44,10 @@ exports[`<ValuesField /> fixed_tuple matches the latest snapshot for null values
44
44
  />
45
45
  <DefaultValue
46
46
  field={
47
- Object {
48
- "values": Object {
49
- "fixed_tuple": Array [
50
- Object {
47
+ {
48
+ "values": {
49
+ "fixed_tuple": [
50
+ {
51
51
  "text": "Bar",
52
52
  "value": "Foo",
53
53
  },
@@ -66,7 +66,7 @@ exports[`<ValuesField /> noPrefix matches the latest snapshot for null values 1`
66
66
  <Segment>
67
67
  <DefaultValue
68
68
  field={
69
- Object {
69
+ {
70
70
  "values": null,
71
71
  }
72
72
  }
@@ -80,8 +80,8 @@ exports[`<ValuesField /> role_users matches the latest snapshot for not null val
80
80
  <Segment>
81
81
  <DefaultValue
82
82
  field={
83
- Object {
84
- "values": Object {
83
+ {
84
+ "values": {
85
85
  "role_users": "test_role",
86
86
  },
87
87
  }
@@ -100,13 +100,13 @@ exports[`<ValuesField /> switch matches the latest snapshot for null values 1`]
100
100
  onChange={[MockFunction]}
101
101
  type="switch"
102
102
  values={
103
- Object {
103
+ {
104
104
  "on": "test",
105
- "values": Object {
106
- "a": Array [
105
+ "values": {
106
+ "a": [
107
107
  "1",
108
108
  ],
109
- "b": Array [
109
+ "b": [
110
110
  "2",
111
111
  "3",
112
112
  ],
@@ -116,15 +116,15 @@ exports[`<ValuesField /> switch matches the latest snapshot for null values 1`]
116
116
  />
117
117
  <DefaultValue
118
118
  field={
119
- Object {
120
- "values": Object {
121
- "switch": Object {
119
+ {
120
+ "values": {
121
+ "switch": {
122
122
  "on": "test",
123
- "values": Object {
124
- "a": Array [
123
+ "values": {
124
+ "a": [
125
125
  "1",
126
126
  ],
127
- "b": Array [
127
+ "b": [
128
128
  "2",
129
129
  "3",
130
130
  ],
@@ -144,14 +144,14 @@ exports[`<ValuesField /> table_columns matches the latest snapshot 1`] = `
144
144
  <Segment>
145
145
  <DefaultValue
146
146
  field={
147
- Object {
148
- "values": Object {
149
- "table_columns": Array [
150
- Object {
147
+ {
148
+ "values": {
149
+ "table_columns": [
150
+ {
151
151
  "mandatory": true,
152
152
  "name": "field1",
153
153
  },
154
- Object {
154
+ {
155
155
  "mandatory": false,
156
156
  "name": "field2",
157
157
  },
@@ -6,7 +6,7 @@ exports[`<ValuesSelector /> matches the latest snapshot for null values 1`] = `
6
6
  onChange={[Function]}
7
7
  type="fixed"
8
8
  values={
9
- Object {
9
+ {
10
10
  "fixed": null,
11
11
  }
12
12
  }