@sebgroup/green-core 2.37.2 → 2.37.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.
- package/bin/context-cli/index.js +5 -0
- package/bin/context-cli/migrate/engine.d.ts +48 -0
- package/bin/context-cli/migrate/engine.js +111 -0
- package/bin/context-cli/migrate/index.d.ts +15 -0
- package/bin/context-cli/migrate/index.js +232 -0
- package/bin/context-cli/migrate/registry.d.ts +43 -0
- package/bin/context-cli/migrate/registry.js +75 -0
- package/bin/context-cli/migrate/types.d.ts +135 -0
- package/bin/context-cli/migrate/types.js +0 -0
- package/bin/context-cli/migrate/units/0/example.d.ts +52 -0
- package/bin/context-cli/migrate/units/0/example.js +146 -0
- package/components/pagination/pagination.component.js +14 -3
- package/custom-elements.json +2092 -1830
- package/gds-element.js +1 -1
- package/generated/mcp/components.json +1 -1
- package/generated/mcp/guides/migration.md +5 -0
- package/generated/mcp/icons.json +1 -1
- package/generated/mcp/index.json +1 -1
- package/package.json +1 -1
- package/utils/helpers/custom-element-scoping.js +1 -1
package/gds-element.js
CHANGED
|
@@ -12,7 +12,7 @@ class GdsElement extends LitElement {
|
|
|
12
12
|
/**
|
|
13
13
|
* The semantic version of this element. Can be used for troubleshooting to verify the version being used.
|
|
14
14
|
*/
|
|
15
|
-
this.semanticVersion = "2.37.
|
|
15
|
+
this.semanticVersion = "2.37.3";
|
|
16
16
|
this._isUsingTransitionalStyles = false;
|
|
17
17
|
this._dynamicStylesController = new DynamicStylesController(this);
|
|
18
18
|
}
|
|
@@ -6,6 +6,11 @@ If you need to update several versions at once, it is recommended to follow the
|
|
|
6
6
|
|
|
7
7
|
Before you begin, make sure you have the latest feature/patch version of your current major version.
|
|
8
8
|
|
|
9
|
+
## Automated migrations
|
|
10
|
+
|
|
11
|
+
Many migrations can be automated using the `green-core-context migrate` command. This will detect and apply code changes for supported automated migrations.
|
|
12
|
+
Check out the [Context CLI documentation](/docs/guides-green-context-cli--docs) for more details on how to use the migration engine.
|
|
13
|
+
|
|
9
14
|
## 1.90.2 to 2.x.x
|
|
10
15
|
|
|
11
16
|
This release contains several updates and refinements related to the design tokens and declarative layout system. A lot of work has gone into aligning things between code and design (Figma), in order to make the design and development process as seamless as possible for everyone.
|
package/generated/mcp/icons.json
CHANGED
package/generated/mcp/index.json
CHANGED
package/package.json
CHANGED