Skip to content

Commit 54597a3

Browse files
authored
chore(tokens): update design-tokens dependency to 1.2.3 (#30327)
Issue number: internal --------- <!-- Please do not submit updates to dependencies unless it fixes an issue. --> <!-- Please try to limit your pull request to one type (bugfix, feature, etc). Submit multiple pull requests if needed. --> ## What is the current behavior? <!-- Please describe the current behavior that you are modifying. --> ## What is the new behavior? <!-- Please describe the behavior or changes that are being added by this PR. --> - Update tokens dependency to 1.2.3. - This version fixes the generation of the z-index tokens. ## Does this introduce a breaking change? - [ ] Yes - [x] No <!-- If this introduces a breaking change: 1. Describe the impact and migration path for existing applications below. 2. Update the BREAKING.md file with the breaking change. 3. Add "BREAKING CHANGE: [...]" to the commit description when merging. See https://github.com/ionic-team/ionic-framework/blob/main/docs/CONTRIBUTING.md#footer for more information. --> ## Other information <!-- Any other information that is important to this PR such as screenshots of how the component looks before and after the change. -->
1 parent 8c4bf8b commit 54597a3

File tree

4 files changed

+37
-37
lines changed

4 files changed

+37
-37
lines changed

core/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
"fs-extra": "^9.0.1",
6767
"jest": "^29.7.0",
6868
"jest-cli": "^29.7.0",
69-
"outsystems-design-tokens": "^1.2.2",
69+
"outsystems-design-tokens": "^1.2.3",
7070
"prettier": "^2.8.8",
7171
"rollup": "^2.26.4",
7272
"sass": "^1.33.0",

core/src/foundations/ionic.utility.scss

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -2468,30 +2468,6 @@ Do not edit directly, this file was auto-generated.
24682468
@include padding(null, null, null, $ion-space-050);
24692469
}
24702470

2471-
.ion-z-index-0 {
2472-
z-index: $ion-z-index-0;
2473-
}
2474-
.ion-z-index-100 {
2475-
z-index: $ion-z-index-100;
2476-
}
2477-
.ion-z-index-200 {
2478-
z-index: $ion-z-index-200;
2479-
}
2480-
.ion-z-index-300 {
2481-
z-index: $ion-z-index-300;
2482-
}
2483-
.ion-z-index-400 {
2484-
z-index: $ion-z-index-400;
2485-
}
2486-
.ion-z-index-500 {
2487-
z-index: $ion-z-index-500;
2488-
}
2489-
.ion-z-index-bottom {
2490-
z-index: $ion-z-index-bottom;
2491-
}
2492-
.ion-z-index-top {
2493-
z-index: $ion-z-index-top;
2494-
}
24952471
.ion-transition-curve-linear {
24962472
transition: $ion-transition-curve-linear;
24972473
}
@@ -2633,6 +2609,30 @@ Do not edit directly, this file was auto-generated.
26332609
.ion-font-line-height-full {
26342610
line-height: $ion-font-line-height-full;
26352611
}
2612+
.ion-z-index-0 {
2613+
z-index: $ion-z-index-0;
2614+
}
2615+
.ion-z-index-100 {
2616+
z-index: $ion-z-index-100;
2617+
}
2618+
.ion-z-index-200 {
2619+
z-index: $ion-z-index-200;
2620+
}
2621+
.ion-z-index-300 {
2622+
z-index: $ion-z-index-300;
2623+
}
2624+
.ion-z-index-400 {
2625+
z-index: $ion-z-index-400;
2626+
}
2627+
.ion-z-index-500 {
2628+
z-index: $ion-z-index-500;
2629+
}
2630+
.ion-z-index-bottom {
2631+
z-index: $ion-z-index-bottom;
2632+
}
2633+
.ion-z-index-top {
2634+
z-index: $ion-z-index-top;
2635+
}
26362636
.ion-rectangular-2xs {
26372637
border-radius: $ion-rectangular-2xs;
26382638
}

core/src/foundations/ionic.vars.scss

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -374,14 +374,6 @@ $ion-space-900: var(--ion-space-900, 36px);
374374
$ion-space-1000: var(--ion-space-1000, 40px);
375375
$ion-space-1200: var(--ion-space-1200, 48px);
376376
$ion-space-050: var(--ion-space-050, 2px);
377-
$ion-z-index-0: var(--ion-z-index-0, 0px);
378-
$ion-z-index-100: var(--ion-z-index-100, 100px);
379-
$ion-z-index-200: var(--ion-z-index-200, 200px);
380-
$ion-z-index-300: var(--ion-z-index-300, 300px);
381-
$ion-z-index-400: var(--ion-z-index-400, 400px);
382-
$ion-z-index-500: var(--ion-z-index-500, 500px);
383-
$ion-z-index-bottom: var(--ion-z-index-bottom, -99999px);
384-
$ion-z-index-top: var(--ion-z-index-top, 99999px);
385377
$ion-transition-curve-linear: var(--ion-transition-curve-linear, linear);
386378
$ion-transition-curve-quick: var(--ion-transition-curve-quick, cubic-bezier(0, 0, 0.2, 1));
387379
$ion-transition-curve-base: var(--ion-transition-curve-base, cubic-bezier(0.4, 0, 1, 1));
@@ -430,6 +422,14 @@ $ion-font-line-height-900: var(--ion-font-line-height-900, 36px);
430422
$ion-font-line-height-1100: var(--ion-font-line-height-1100, 44px);
431423
$ion-font-line-height-1200: var(--ion-font-line-height-1200, 48px);
432424
$ion-font-line-height-full: var(--ion-font-line-height-full, 100%);
425+
$ion-z-index-0: var(--ion-z-index-0, 0);
426+
$ion-z-index-100: var(--ion-z-index-100, 100);
427+
$ion-z-index-200: var(--ion-z-index-200, 200);
428+
$ion-z-index-300: var(--ion-z-index-300, 300);
429+
$ion-z-index-400: var(--ion-z-index-400, 400);
430+
$ion-z-index-500: var(--ion-z-index-500, 500);
431+
$ion-z-index-bottom: var(--ion-z-index-bottom, -99999);
432+
$ion-z-index-top: var(--ion-z-index-top, 99999);
433433
$ion-rectangular-2xs: var(--ion-rectangular-2xs, 0px);
434434
$ion-rectangular-xs: var(--ion-rectangular-xs, 0px);
435435
$ion-rectangular-sm: var(--ion-rectangular-sm, 0px);

0 commit comments

Comments
 (0)