@koobiq/components 18.6.0 → 18.7.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@koobiq/components",
3
- "version": "18.6.0",
3
+ "version": "18.7.1",
4
4
  "description": "koobiq",
5
5
  "repository": {
6
6
  "type": "git",
@@ -24,9 +24,9 @@
24
24
  "@angular/cdk": "^18.0.0",
25
25
  "@angular/core": "^18.0.0",
26
26
  "@angular/forms": "^18.0.0",
27
- "@koobiq/cdk": "18.6.0",
28
- "@koobiq/angular-moment-adapter": "18.6.0",
29
- "@koobiq/angular-luxon-adapter": "18.6.0",
27
+ "@koobiq/cdk": "18.7.1",
28
+ "@koobiq/angular-moment-adapter": "18.7.1",
29
+ "@koobiq/angular-luxon-adapter": "18.7.1",
30
30
  "@koobiq/date-formatter": "^3.1.3",
31
31
  "@koobiq/icons": "^9.0.0",
32
32
  "@koobiq/tokens-builder": "3.8.1",
@@ -9,13 +9,18 @@
9
9
  },
10
10
  "new-icons-pack": {
11
11
  "description": "Updates prefixes and names of changed/removed icons",
12
- "factory": "./new-icons-pack/index",
13
- "schema": "./new-icons-pack/schema.json"
12
+ "factory": "./migrations/new-icons-pack/index",
13
+ "schema": "./migrations/new-icons-pack/schema.json"
14
14
  },
15
15
  "css-selectors": {
16
16
  "description": "Updates prefixes and names of changed/removed icons",
17
17
  "factory": "./migrations/css-selectors/index",
18
18
  "schema": "./migrations/css-selectors/schema.json"
19
+ },
20
+ "deprecated-icons": {
21
+ "description": "Updates prefixes and names of changed/removed icons",
22
+ "factory": "./migrations/deprecated-icons/index",
23
+ "schema": "./migrations/deprecated-icons/schema.json"
19
24
  }
20
25
  }
21
26
  }
@@ -7,6 +7,7 @@ var utils_packageConfig = require('../../utils/package-config.js');
7
7
  var migrations_cssSelectors_data = require('./data.js');
8
8
  require('@angular-devkit/schematics');
9
9
  require('@schematics/angular/utility');
10
+ require('../../utils/messages.js');
10
11
 
11
12
  function _interopNamespaceDefault(e) {
12
13
  var n = Object.create(null);
@@ -81,12 +82,12 @@ function cssSelectors(options) {
81
82
  };
82
83
  }
83
84
  function getBaseReplacements(filePath, foundSelectors) {
84
- const parsedFilePath = path__namespace.relative(__dirname, `.${filePath}`);
85
+ const parsedFilePath = path__namespace.relative(__dirname, `.${filePath}`).replace(/\\/g, '/');
85
86
  return `
86
87
  -------------------------
87
- Please pay attention! Found deprecated сss-selectors in file:
88
- ${parsedFilePath.replace(/\\/g, '/')}
89
- Replace with specified rules:
88
+ Please pay attention! Found deprecated сss-selectors in file:
89
+ ${parsedFilePath}
90
+ Replace with specified rules:
90
91
  ${foundSelectors.map(({ replace, replaceWith }) => `\t${replace} -> \t${replaceWith}`).join('\n')}
91
92
  -------------------------
92
93
  `;