@taiga-ui/cdk 4.7.0-canary.d4099d2 → 4.8.0

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.
@@ -29,7 +29,7 @@ function addAngularCdkDep(tree) {
29
29
  if (!angularCore) {
30
30
  return;
31
31
  }
32
- const majorVersionArr = /[0-9]+/.exec(angularCore);
32
+ const majorVersionArr = /\d+/.exec(angularCore);
33
33
  if (majorVersionArr) {
34
34
  (0, ng_morph_1.addPackageJsonDependency)(tree, {
35
35
  name: '@angular/cdk',
@@ -301,4 +301,13 @@ exports.ATTRS_TO_REPLACE = [
301
301
  attrName: '[tuiAppearanceFocus]',
302
302
  },
303
303
  },
304
+ {
305
+ from: {
306
+ attrName: '*tuiRow',
307
+ withTagNames: ['tr'],
308
+ },
309
+ to: {
310
+ attrName: '*ngFor',
311
+ },
312
+ },
304
313
  ];
@@ -50,13 +50,14 @@ function migrateEditor(fileSystem, options) {
50
50
  {
51
51
  from: [
52
52
  { name: 'defaultEditorTools', moduleSpecifier },
53
- {
54
- name: 'TUI_EDITOR_DEFAULT_TOOLS',
55
- moduleSpecifier: '@tinkoff/tui-editor',
56
- },
53
+ { name: 'TUI_EDITOR_DEFAULT_TOOLS', moduleSpecifier },
57
54
  ],
58
55
  to: { name: 'TUI_EDITOR_DEFAULT_TOOLS', moduleSpecifier: '@taiga-ui/editor' },
59
56
  },
57
+ {
58
+ from: { name: 'TUI_EDITOR_DEFAULT_EDITOR_TOOLS', moduleSpecifier },
59
+ to: { name: 'TUI_EDITOR_DEFAULT_TOOLS', moduleSpecifier: '@taiga-ui/editor' },
60
+ },
60
61
  {
61
62
  from: { name: 'TuiColorPickerModule', moduleSpecifier },
62
63
  to: { name: 'TuiColorPickerModule', moduleSpecifier: '@taiga-ui/legacy' },