@oat-sa/tao-core-ui 3.13.2 → 3.13.3

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.
@@ -55,6 +55,15 @@ define(['jquery', 'lodash', 'ui/ckeditor/dtdHandler', 'ckeditor', 'context', 'mo
55
55
  }, {
56
56
  name: 'language',
57
57
  items: ['Language']
58
+ }, {
59
+ name: 'styles',
60
+ items: ['Format']
61
+ }, {
62
+ name: 'paragraph',
63
+ items: ['NumberedList', 'BulletedList', '-', 'Blockquote', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock']
64
+ }, {
65
+ name: 'interactionsource',
66
+ items: ['InteractionSource']
58
67
  }],
59
68
  flow: [{
60
69
  name: 'basicstyles',
@@ -68,6 +77,9 @@ define(['jquery', 'lodash', 'ui/ckeditor/dtdHandler', 'ckeditor', 'context', 'mo
68
77
  }, {
69
78
  name: 'language',
70
79
  items: ['Language']
80
+ }, {
81
+ name: 'interactionsource',
82
+ items: ['InteractionSource']
71
83
  }],
72
84
  block: [{
73
85
  name: 'basicstyles',
@@ -87,6 +99,9 @@ define(['jquery', 'lodash', 'ui/ckeditor/dtdHandler', 'ckeditor', 'context', 'mo
87
99
  }, {
88
100
  name: 'paragraph',
89
101
  items: ['NumberedList', 'BulletedList', '-', 'Blockquote', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock']
102
+ }, {
103
+ name: 'interactionsource',
104
+ items: ['InteractionSource']
90
105
  }],
91
106
  extendedText: [{
92
107
  name: 'basicstyles',
@@ -140,6 +155,9 @@ define(['jquery', 'lodash', 'ui/ckeditor/dtdHandler', 'ckeditor', 'context', 'mo
140
155
  }, {
141
156
  name: 'language',
142
157
  items: ['Language']
158
+ }, {
159
+ name: 'interactionsource',
160
+ items: ['InteractionSource']
143
161
  }],
144
162
  table: [{
145
163
  name: 'basicstyles',
@@ -156,6 +174,9 @@ define(['jquery', 'lodash', 'ui/ckeditor/dtdHandler', 'ckeditor', 'context', 'mo
156
174
  }, {
157
175
  name: 'language',
158
176
  items: ['Language']
177
+ }, {
178
+ name: 'interactionsource',
179
+ items: ['InteractionSource']
159
180
  }]
160
181
  };
161
182
 
@@ -167,7 +188,7 @@ define(['jquery', 'lodash', 'ui/ckeditor/dtdHandler', 'ckeditor', 'context', 'mo
167
188
  entities: false,
168
189
  entities_processNumerical: true,
169
190
  autoParagraph: false,
170
- extraPlugins: 'confighelper, taolanguage',
191
+ extraPlugins: 'confighelper, taolanguage, interactionsource',
171
192
  floatSpaceDockedOffsetY: 0,
172
193
  forcePasteAsPlainText: true,
173
194
  skin: 'tao',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oat-sa/tao-core-ui",
3
- "version": "3.13.2",
3
+ "version": "3.13.3",
4
4
  "displayName": "TAO Core UI",
5
5
  "description": "UI libraries of TAO",
6
6
  "scripts": {
@@ -61,6 +61,19 @@ const ckConfigurator = (function () {
61
61
  {
62
62
  name: 'language',
63
63
  items: ['Language']
64
+
65
+ },
66
+ {
67
+ name: 'styles',
68
+ items: ['Format']
69
+ },
70
+ {
71
+ name: 'paragraph',
72
+ items: ['NumberedList', 'BulletedList', '-', 'Blockquote', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock']
73
+ },
74
+ {
75
+ name: 'interactionsource',
76
+ items: ['InteractionSource']
64
77
  }
65
78
  ],
66
79
  flow: [
@@ -79,6 +92,10 @@ const ckConfigurator = (function () {
79
92
  {
80
93
  name: 'language',
81
94
  items: ['Language']
95
+ },
96
+ {
97
+ name: 'interactionsource',
98
+ items: ['InteractionSource']
82
99
  }
83
100
  ],
84
101
  block: [
@@ -114,6 +131,10 @@ const ckConfigurator = (function () {
114
131
  'JustifyRight',
115
132
  'JustifyBlock'
116
133
  ]
134
+ },
135
+ {
136
+ name: 'interactionsource',
137
+ items: ['InteractionSource']
117
138
  }
118
139
  ],
119
140
  extendedText: [
@@ -186,6 +207,10 @@ const ckConfigurator = (function () {
186
207
  {
187
208
  name: 'language',
188
209
  items: ['Language']
210
+ },
211
+ {
212
+ name: 'interactionsource',
213
+ items: ['InteractionSource']
189
214
  }
190
215
  ],
191
216
  table: [
@@ -208,6 +233,10 @@ const ckConfigurator = (function () {
208
233
  {
209
234
  name: 'language',
210
235
  items: ['Language']
236
+ },
237
+ {
238
+ name: 'interactionsource',
239
+ items: ['InteractionSource']
211
240
  }
212
241
  ]
213
242
  };
@@ -220,7 +249,7 @@ const ckConfigurator = (function () {
220
249
  entities: false,
221
250
  entities_processNumerical: true,
222
251
  autoParagraph: false,
223
- extraPlugins: 'confighelper, taolanguage',
252
+ extraPlugins: 'confighelper, taolanguage, interactionsource',
224
253
  floatSpaceDockedOffsetY: 0,
225
254
  forcePasteAsPlainText: true,
226
255
  skin: 'tao',