@skyux/packages 14.0.0-alpha.13 → 14.0.0-alpha.15

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 (26) hide show
  1. package/migrations.json +11 -6
  2. package/package.json +58 -57
  3. package/src/schematics/migrations/update-14/replace-deprecated-css-vars-and-classes/replace-deprecated-css-vars-and-classes.d.ts +23 -0
  4. package/src/schematics/migrations/update-14/replace-deprecated-css-vars-and-classes/replace-deprecated-css-vars-and-classes.js +106 -0
  5. package/src/schematics/migrations/update-14/replace-deprecated-css-vars-and-classes/replace-deprecated-css-vars-and-classes.js.map +1 -0
  6. package/src/schematics/migrations/update-14/replace-deprecated-css-vars-and-classes/types/public-api-style-group.d.ts +8 -0
  7. package/src/schematics/migrations/update-14/replace-deprecated-css-vars-and-classes/types/public-api-style-group.js +3 -0
  8. package/src/schematics/migrations/update-14/replace-deprecated-css-vars-and-classes/types/public-api-style-group.js.map +1 -0
  9. package/src/schematics/migrations/update-14/replace-deprecated-css-vars-and-classes/types/public-api-style.d.ts +10 -0
  10. package/src/schematics/migrations/update-14/replace-deprecated-css-vars-and-classes/types/public-api-style.js +3 -0
  11. package/src/schematics/migrations/update-14/replace-deprecated-css-vars-and-classes/types/public-api-style.js.map +1 -0
  12. package/src/schematics/migrations/update-14/replace-deprecated-css-vars-and-classes/types/public-api-styles.d.ts +6 -0
  13. package/src/schematics/migrations/update-14/replace-deprecated-css-vars-and-classes/types/public-api-styles.js +3 -0
  14. package/src/schematics/migrations/update-14/replace-deprecated-css-vars-and-classes/types/public-api-styles.js.map +1 -0
  15. package/src/schematics/migrations/update-14/replace-deprecated-css-vars-and-classes/types/public-api-token-group.d.ts +7 -0
  16. package/src/schematics/migrations/update-14/replace-deprecated-css-vars-and-classes/types/public-api-token-group.js +3 -0
  17. package/src/schematics/migrations/update-14/replace-deprecated-css-vars-and-classes/types/public-api-token-group.js.map +1 -0
  18. package/src/schematics/migrations/update-14/replace-deprecated-css-vars-and-classes/types/public-api-token.d.ts +9 -0
  19. package/src/schematics/migrations/update-14/replace-deprecated-css-vars-and-classes/types/public-api-token.js +3 -0
  20. package/src/schematics/migrations/update-14/replace-deprecated-css-vars-and-classes/types/public-api-token.js.map +1 -0
  21. package/src/schematics/migrations/update-14/replace-deprecated-css-vars-and-classes/types/public-api-tokens.d.ts +6 -0
  22. package/src/schematics/migrations/update-14/replace-deprecated-css-vars-and-classes/types/public-api-tokens.js +3 -0
  23. package/src/schematics/migrations/update-14/replace-deprecated-css-vars-and-classes/types/public-api-tokens.js.map +1 -0
  24. package/src/schematics/rules/convert-page-summary-to-page-header/convert-page-summary-to-page-header.js +1 -1
  25. package/src/schematics/rules/convert-progress-indicator-wizard-to-tab-wizard/convert-progress-indicator-wizard-to-tab-wizard.js +1 -1
  26. package/src/version.js +1 -1
package/migrations.json CHANGED
@@ -1,34 +1,39 @@
1
1
  {
2
2
  "schematics": {
3
3
  "noop": {
4
- "version": "14.0.0-alpha.13",
4
+ "version": "14.0.0-alpha.15",
5
5
  "factory": "./src/schematics/migrations/all/noop/noop.schematic",
6
6
  "description": "Update all SKY UX component packages"
7
7
  },
8
8
  "i18n-resources-module": {
9
- "version": "14.0.0-alpha.13",
9
+ "version": "14.0.0-alpha.15",
10
10
  "factory": "./src/schematics/migrations/all/i18n-resources-module/i18n-resources-module.schematic",
11
11
  "description": "Regenerate i18n resources modules for libraries."
12
12
  },
13
13
  "remove-old-compat-stylesheets": {
14
- "version": "14.0.0-alpha.13",
14
+ "version": "14.0.0-alpha.15",
15
15
  "factory": "./src/schematics/migrations/all/remove-old-compat-stylesheets/remove-old-compat-stylesheets.schematic",
16
16
  "description": "Remove backward compatible stylesheets for older versions of SKY UX."
17
17
  },
18
18
  "workspace-check": {
19
- "version": "14.0.0-alpha.13",
19
+ "version": "14.0.0-alpha.15",
20
20
  "factory": "./src/schematics/migrations/all/workspace-check/workspace-check.schematic",
21
21
  "description": "Log warnings if the workspace is not configured correctly."
22
22
  },
23
23
  "uninstall-prettier-schematics": {
24
- "version": "14.0.0-alpha.13",
24
+ "version": "14.0.0-alpha.15",
25
25
  "factory": "./src/schematics/migrations/update-14/uninstall-prettier-schematics/uninstall-prettier-schematics",
26
26
  "description": "Uninstall the @skyux-sdk/prettier-schematics package"
27
27
  },
28
28
  "remove-dragula": {
29
- "version": "14.0.0-alpha.13",
29
+ "version": "14.0.0-alpha.15",
30
30
  "factory": "./src/schematics/migrations/update-14/remove-dragula/remove-dragula",
31
31
  "description": "Remove dragula, ng2-dragula, and dom-autoscroller packages if not used"
32
+ },
33
+ "replace-deprecated-css-vars-and-classes": {
34
+ "version": "14.0.0-alpha.15",
35
+ "factory": "./src/schematics/migrations/update-14/replace-deprecated-css-vars-and-classes/replace-deprecated-css-vars-and-classes",
36
+ "description": "Replace known CSS classes and custom properties in HTML, TypeScript/JavaScript, and CSS/SCSS files"
32
37
  }
33
38
  }
34
39
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/packages",
3
- "version": "14.0.0-alpha.13",
3
+ "version": "14.0.0-alpha.15",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "description": "Handles the `ng update` command for SKY UX component libraries.",
6
6
  "keywords": [
@@ -35,68 +35,68 @@
35
35
  "ng-update": {
36
36
  "migrations": "./migrations.json",
37
37
  "packageGroup": {
38
- "@skyux/packages": "14.0.0-alpha.13",
38
+ "@skyux/packages": "14.0.0-alpha.15",
39
39
  "@blackbaud/angular-tree-component": "^1.0.0",
40
- "@skyux-sdk/eslint-schematics": "14.0.0-alpha.13",
41
- "@skyux-sdk/stylelint-schematics": "14.0.0-alpha.13",
42
- "@skyux-sdk/testing": "14.0.0-alpha.13",
43
- "@skyux/a11y": "14.0.0-alpha.13",
44
- "@skyux/action-bars": "14.0.0-alpha.13",
45
- "@skyux/ag-grid": "14.0.0-alpha.13",
46
- "@skyux/angular-tree-component": "14.0.0-alpha.13",
47
- "@skyux/animations": "14.0.0-alpha.13",
48
- "@skyux/assets": "14.0.0-alpha.13",
49
- "@skyux/autonumeric": "14.0.0-alpha.13",
50
- "@skyux/avatar": "14.0.0-alpha.13",
51
- "@skyux/code-examples": "14.0.0-alpha.13",
52
- "@skyux/colorpicker": "14.0.0-alpha.13",
53
- "@skyux/config": "14.0.0-alpha.13",
54
- "@skyux/core": "14.0.0-alpha.13",
55
- "@skyux/data-manager": "14.0.0-alpha.13",
56
- "@skyux/datetime": "14.0.0-alpha.13",
57
- "@skyux/docs-tools": "14.0.0-alpha.13",
58
- "@skyux/errors": "14.0.0-alpha.13",
59
- "@skyux/filter-bar": "14.0.0-alpha.13",
60
- "@skyux/flyout": "14.0.0-alpha.13",
61
- "@skyux/forms": "14.0.0-alpha.13",
62
- "@skyux/grids": "14.0.0-alpha.13",
63
- "@skyux/help-inline": "14.0.0-alpha.13",
64
- "@skyux/i18n": "14.0.0-alpha.13",
65
- "@skyux/icon": "14.0.0-alpha.13",
40
+ "@skyux-sdk/eslint-schematics": "14.0.0-alpha.15",
41
+ "@skyux-sdk/stylelint-schematics": "14.0.0-alpha.15",
42
+ "@skyux-sdk/testing": "14.0.0-alpha.15",
43
+ "@skyux/a11y": "14.0.0-alpha.15",
44
+ "@skyux/action-bars": "14.0.0-alpha.15",
45
+ "@skyux/ag-grid": "14.0.0-alpha.15",
46
+ "@skyux/angular-tree-component": "14.0.0-alpha.15",
47
+ "@skyux/animations": "14.0.0-alpha.15",
48
+ "@skyux/assets": "14.0.0-alpha.15",
49
+ "@skyux/autonumeric": "14.0.0-alpha.15",
50
+ "@skyux/avatar": "14.0.0-alpha.15",
51
+ "@skyux/code-examples": "14.0.0-alpha.15",
52
+ "@skyux/colorpicker": "14.0.0-alpha.15",
53
+ "@skyux/config": "14.0.0-alpha.15",
54
+ "@skyux/core": "14.0.0-alpha.15",
55
+ "@skyux/data-manager": "14.0.0-alpha.15",
56
+ "@skyux/datetime": "14.0.0-alpha.15",
57
+ "@skyux/docs-tools": "14.0.0-alpha.15",
58
+ "@skyux/errors": "14.0.0-alpha.15",
59
+ "@skyux/filter-bar": "14.0.0-alpha.15",
60
+ "@skyux/flyout": "14.0.0-alpha.15",
61
+ "@skyux/forms": "14.0.0-alpha.15",
62
+ "@skyux/grids": "14.0.0-alpha.15",
63
+ "@skyux/help-inline": "14.0.0-alpha.15",
64
+ "@skyux/i18n": "14.0.0-alpha.15",
65
+ "@skyux/icon": "14.0.0-alpha.15",
66
66
  "@skyux/icons": "^10.4.0",
67
- "@skyux/indicators": "14.0.0-alpha.13",
68
- "@skyux/inline-form": "14.0.0-alpha.13",
69
- "@skyux/layout": "14.0.0-alpha.13",
70
- "@skyux/list-builder": "14.0.0-alpha.13",
71
- "@skyux/list-builder-common": "14.0.0-alpha.13",
72
- "@skyux/list-builder-view-checklist": "14.0.0-alpha.13",
73
- "@skyux/list-builder-view-grids": "14.0.0-alpha.13",
74
- "@skyux/lists": "14.0.0-alpha.13",
75
- "@skyux/lookup": "14.0.0-alpha.13",
76
- "@skyux/manifest": "14.0.0-alpha.13",
77
- "@skyux/modals": "14.0.0-alpha.13",
78
- "@skyux/navbar": "14.0.0-alpha.13",
79
- "@skyux/pages": "14.0.0-alpha.13",
80
- "@skyux/phone-field": "14.0.0-alpha.13",
81
- "@skyux/popovers": "14.0.0-alpha.13",
82
- "@skyux/progress-indicator": "14.0.0-alpha.13",
83
- "@skyux/router": "14.0.0-alpha.13",
84
- "@skyux/select-field": "14.0.0-alpha.13",
85
- "@skyux/split-view": "14.0.0-alpha.13",
86
- "@skyux/tabs": "14.0.0-alpha.13",
87
- "@skyux/text-editor": "14.0.0-alpha.13",
88
- "@skyux/theme": "14.0.0-alpha.13",
89
- "@skyux/tiles": "14.0.0-alpha.13",
90
- "@skyux/toast": "14.0.0-alpha.13",
91
- "@skyux/validation": "14.0.0-alpha.13",
67
+ "@skyux/indicators": "14.0.0-alpha.15",
68
+ "@skyux/inline-form": "14.0.0-alpha.15",
69
+ "@skyux/layout": "14.0.0-alpha.15",
70
+ "@skyux/list-builder": "14.0.0-alpha.15",
71
+ "@skyux/list-builder-common": "14.0.0-alpha.15",
72
+ "@skyux/list-builder-view-checklist": "14.0.0-alpha.15",
73
+ "@skyux/list-builder-view-grids": "14.0.0-alpha.15",
74
+ "@skyux/lists": "14.0.0-alpha.15",
75
+ "@skyux/lookup": "14.0.0-alpha.15",
76
+ "@skyux/manifest": "14.0.0-alpha.15",
77
+ "@skyux/modals": "14.0.0-alpha.15",
78
+ "@skyux/navbar": "14.0.0-alpha.15",
79
+ "@skyux/pages": "14.0.0-alpha.15",
80
+ "@skyux/phone-field": "14.0.0-alpha.15",
81
+ "@skyux/popovers": "14.0.0-alpha.15",
82
+ "@skyux/progress-indicator": "14.0.0-alpha.15",
83
+ "@skyux/router": "14.0.0-alpha.15",
84
+ "@skyux/select-field": "14.0.0-alpha.15",
85
+ "@skyux/split-view": "14.0.0-alpha.15",
86
+ "@skyux/tabs": "14.0.0-alpha.15",
87
+ "@skyux/text-editor": "14.0.0-alpha.15",
88
+ "@skyux/theme": "14.0.0-alpha.15",
89
+ "@skyux/tiles": "14.0.0-alpha.15",
90
+ "@skyux/toast": "14.0.0-alpha.15",
91
+ "@skyux/validation": "14.0.0-alpha.15",
92
92
  "ag-grid-angular": "^35.1.0",
93
93
  "ag-grid-community": "^35.1.0",
94
94
  "ag-grid-enterprise": "^35.1.0",
95
95
  "autonumeric": "^4.10.9",
96
- "eslint-config-skyux": "14.0.0-alpha.13",
97
- "skyux-eslint": "14.0.0-alpha.13",
98
- "skyux-stylelint": "14.0.0-alpha.13",
99
- "stylelint-config-skyux": "14.0.0-alpha.13"
96
+ "eslint-config-skyux": "14.0.0-alpha.15",
97
+ "skyux-eslint": "14.0.0-alpha.15",
98
+ "skyux-stylelint": "14.0.0-alpha.15",
99
+ "stylelint-config-skyux": "14.0.0-alpha.15"
100
100
  }
101
101
  },
102
102
  "peerDependencies": {
@@ -104,6 +104,7 @@
104
104
  "@angular/core": "^21.2.0"
105
105
  },
106
106
  "dependencies": {
107
+ "@blackbaud/skyux-design-tokens": "5.5.0",
107
108
  "fs-extra": "11.3.4",
108
109
  "jsonc-parser": "3.3.1",
109
110
  "parse5": "7.3.0",
@@ -0,0 +1,23 @@
1
+ import { Rule } from '@angular-devkit/schematics';
2
+ import { PublicApiStyle } from './types/public-api-style';
3
+ import { PublicApiStyleGroup } from './types/public-api-style-group';
4
+ import { PublicApiToken } from './types/public-api-token';
5
+ import { PublicApiTokenGroup } from './types/public-api-token-group';
6
+ /**
7
+ * Replaces known deprecated CSS classes and custom properties in HTML,
8
+ * TypeScript/JavaScript, and CSS/SCSS files.
9
+ */
10
+ export default function (): Rule;
11
+ export declare function traverseClasses(node: {
12
+ groups?: PublicApiStyleGroup[];
13
+ styles?: PublicApiStyle[];
14
+ }, result: Record<string, string>): void;
15
+ export declare function traverseTokens(node: {
16
+ groups?: PublicApiTokenGroup[];
17
+ tokens?: PublicApiToken[];
18
+ }, result: Record<string, string>): void;
19
+ /**
20
+ * Builds a rule that replaces CSS class names and custom properties across all
21
+ * HTML, TypeScript/JavaScript, and CSS/SCSS files in the workspace.
22
+ */
23
+ export declare function buildReplaceRule(cssClassReplacements: Record<string, string>, customPropertyReplacements: Record<string, string>): Rule;
@@ -0,0 +1,106 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.default = default_1;
4
+ exports.traverseClasses = traverseClasses;
5
+ exports.traverseTokens = traverseTokens;
6
+ exports.buildReplaceRule = buildReplaceRule;
7
+ const tslib_1 = require("tslib");
8
+ const public_api_styles_json_1 = tslib_1.__importDefault(require("@blackbaud/skyux-design-tokens/bundles/public-api-styles.json"));
9
+ const public_api_tokens_json_1 = tslib_1.__importDefault(require("@blackbaud/skyux-design-tokens/bundles/public-api-tokens.json"));
10
+ const workspace_1 = require("@schematics/angular/utility/workspace");
11
+ const visit_project_files_1 = require("../../../utility/visit-project-files");
12
+ const TARGET_EXTENSIONS = new Set(['.html', '.ts', '.js', '.css', '.scss']);
13
+ /**
14
+ * Replaces known deprecated CSS classes and custom properties in HTML,
15
+ * TypeScript/JavaScript, and CSS/SCSS files.
16
+ */
17
+ function default_1() {
18
+ return buildReplaceRule(buildClassReplacements(), buildTokenReplacements());
19
+ }
20
+ function traverseClasses(node, result) {
21
+ for (const cls of node.styles ?? []) {
22
+ if (cls.className) {
23
+ for (const deprecated of cls.deprecatedClassNames ?? []) {
24
+ result[deprecated] = cls.className;
25
+ }
26
+ for (const obsolete of cls.obsoleteClassNames ?? []) {
27
+ result[obsolete] = cls.className;
28
+ }
29
+ }
30
+ }
31
+ for (const group of node.groups ?? []) {
32
+ traverseClasses(group, result);
33
+ }
34
+ }
35
+ function traverseTokens(node, result) {
36
+ for (const token of node.tokens ?? []) {
37
+ if (token.customProperty) {
38
+ for (const deprecated of token.deprecatedCustomProperties ?? []) {
39
+ result[deprecated] = token.customProperty;
40
+ }
41
+ for (const obsolete of token.obsoleteCustomProperties ?? []) {
42
+ result[obsolete] = token.customProperty;
43
+ }
44
+ }
45
+ }
46
+ for (const group of node.groups ?? []) {
47
+ traverseTokens(group, result);
48
+ }
49
+ }
50
+ function buildClassReplacements() {
51
+ const result = {};
52
+ traverseClasses(public_api_styles_json_1.default, result);
53
+ return result;
54
+ }
55
+ function buildTokenReplacements() {
56
+ const result = {};
57
+ traverseTokens(public_api_tokens_json_1.default, result);
58
+ return result;
59
+ }
60
+ function escapeRegExp(str) {
61
+ return str.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
62
+ }
63
+ /**
64
+ * Replaces CSS class names or custom properties using boundary-aware matching
65
+ * that accounts for hyphenated names. Ensures `sky-old-class` does not match
66
+ * inside `not-sky-old-class` or `sky-old-class-extended`, and `--sky-old-var`
67
+ * does not match inside `--sky-old-var-extended`. An `includes()` pre-check
68
+ * skips the regex entirely when the name is absent from the content.
69
+ */
70
+ function applyReplacements(content, replacements) {
71
+ let updated = content;
72
+ for (const [oldName, newName] of Object.entries(replacements)) {
73
+ if (!updated.includes(oldName)) {
74
+ continue;
75
+ }
76
+ const pattern = new RegExp(`(?<![\\w-])${escapeRegExp(oldName)}(?![\\w-])`, 'g');
77
+ updated = updated.replace(pattern, newName);
78
+ }
79
+ return updated;
80
+ }
81
+ /**
82
+ * Builds a rule that replaces CSS class names and custom properties across all
83
+ * HTML, TypeScript/JavaScript, and CSS/SCSS files in the workspace.
84
+ */
85
+ function buildReplaceRule(cssClassReplacements, customPropertyReplacements) {
86
+ return async (tree, context) => {
87
+ const workspace = await (0, workspace_1.getWorkspace)(tree);
88
+ workspace.projects.forEach((project) => {
89
+ (0, visit_project_files_1.visitProjectFiles)(tree, project.sourceRoot || project.root, (filePath) => {
90
+ const ext = filePath.slice(filePath.lastIndexOf('.'));
91
+ if (!TARGET_EXTENSIONS.has(ext)) {
92
+ return;
93
+ }
94
+ const content = tree.readText(filePath);
95
+ let updated = content;
96
+ updated = applyReplacements(updated, cssClassReplacements);
97
+ updated = applyReplacements(updated, customPropertyReplacements);
98
+ if (updated !== content) {
99
+ tree.overwrite(filePath, updated);
100
+ context.logger.info(`Updated ${filePath}`);
101
+ }
102
+ });
103
+ });
104
+ };
105
+ }
106
+ //# sourceMappingURL=replace-deprecated-css-vars-and-classes.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"replace-deprecated-css-vars-and-classes.js","sourceRoot":"","sources":["../../../../../../../../../libs/components/packages/src/schematics/migrations/update-14/replace-deprecated-css-vars-and-classes/replace-deprecated-css-vars-and-classes.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,8 @@
1
+ import { PublicApiStyle } from './public-api-style';
2
+ export interface PublicApiStyleGroup {
3
+ name: string;
4
+ description?: string;
5
+ groups?: PublicApiStyleGroup[];
6
+ styles?: PublicApiStyle[];
7
+ imageToken?: string;
8
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=public-api-style-group.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"public-api-style-group.js","sourceRoot":"","sources":["../../../../../../../../../../libs/components/packages/src/schematics/migrations/update-14/replace-deprecated-css-vars-and-classes/types/public-api-style-group.ts"],"names":[],"mappings":""}
@@ -0,0 +1,10 @@
1
+ export interface PublicApiStyle {
2
+ name: string;
3
+ className?: string;
4
+ selectors?: string[];
5
+ properties?: Record<string, string>;
6
+ description?: string;
7
+ deprecatedClassNames?: string[];
8
+ obsoleteClassNames?: string[];
9
+ excludeFromDocs?: boolean;
10
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=public-api-style.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"public-api-style.js","sourceRoot":"","sources":["../../../../../../../../../../libs/components/packages/src/schematics/migrations/update-14/replace-deprecated-css-vars-and-classes/types/public-api-style.ts"],"names":[],"mappings":""}
@@ -0,0 +1,6 @@
1
+ import { PublicApiStyle } from './public-api-style';
2
+ import { PublicApiStyleGroup } from './public-api-style-group';
3
+ export interface PublicApiStyles {
4
+ groups?: PublicApiStyleGroup[];
5
+ styles?: PublicApiStyle[];
6
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=public-api-styles.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"public-api-styles.js","sourceRoot":"","sources":["../../../../../../../../../../libs/components/packages/src/schematics/migrations/update-14/replace-deprecated-css-vars-and-classes/types/public-api-styles.ts"],"names":[],"mappings":""}
@@ -0,0 +1,7 @@
1
+ import { PublicApiToken } from './public-api-token';
2
+ export interface PublicApiTokenGroup {
3
+ groupName: string;
4
+ description?: string;
5
+ groups?: PublicApiTokenGroup[];
6
+ tokens?: PublicApiToken[];
7
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=public-api-token-group.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"public-api-token-group.js","sourceRoot":"","sources":["../../../../../../../../../../libs/components/packages/src/schematics/migrations/update-14/replace-deprecated-css-vars-and-classes/types/public-api-token-group.ts"],"names":[],"mappings":""}
@@ -0,0 +1,9 @@
1
+ export interface PublicApiToken {
2
+ name: string;
3
+ customProperty?: string;
4
+ description?: string;
5
+ deprecatedCustomProperties?: string[];
6
+ deprecatedScssVariables?: string[];
7
+ obsoleteCustomProperties?: string[];
8
+ cssProperty?: string;
9
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=public-api-token.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"public-api-token.js","sourceRoot":"","sources":["../../../../../../../../../../libs/components/packages/src/schematics/migrations/update-14/replace-deprecated-css-vars-and-classes/types/public-api-token.ts"],"names":[],"mappings":""}
@@ -0,0 +1,6 @@
1
+ import { PublicApiToken } from './public-api-token';
2
+ import { PublicApiTokenGroup } from './public-api-token-group';
3
+ export interface PublicApiTokens {
4
+ groups?: PublicApiTokenGroup[];
5
+ tokens?: PublicApiToken[];
6
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=public-api-tokens.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"public-api-tokens.js","sourceRoot":"","sources":["../../../../../../../../../../libs/components/packages/src/schematics/migrations/update-14/replace-deprecated-css-vars-and-classes/types/public-api-tokens.ts"],"names":[],"mappings":""}
@@ -198,7 +198,7 @@ function convertPageSummaryToPageHeader(projectPath) {
198
198
  }
199
199
  });
200
200
  },
201
- (0, utility_1.addDependency)('@skyux/pages', `14.0.0-alpha.13`, {
201
+ (0, utility_1.addDependency)('@skyux/pages', `14.0.0-alpha.15`, {
202
202
  existing: utility_1.ExistingBehavior.Skip,
203
203
  }),
204
204
  ]);
@@ -296,7 +296,7 @@ function convertProgressIndicatorWizardToTabWizard(options) {
296
296
  });
297
297
  }
298
298
  },
299
- (0, utility_1.addDependency)('@skyux/tabs', `14.0.0-alpha.13`, {
299
+ (0, utility_1.addDependency)('@skyux/tabs', `14.0.0-alpha.15`, {
300
300
  existing: utility_1.ExistingBehavior.Skip,
301
301
  }),
302
302
  ]);
package/src/version.js CHANGED
@@ -19,5 +19,5 @@ exports.Version = Version;
19
19
  /**
20
20
  * Represents the version of @skyux/core.
21
21
  */
22
- exports.VERSION = new Version('14.0.0-alpha.13');
22
+ exports.VERSION = new Version('14.0.0-alpha.15');
23
23
  //# sourceMappingURL=version.js.map