tyrell-components 1.0.0-TC39 → 1.0.0-TC41
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/css/tyrell-theme.css +41 -0
- package/css/tyrell.css +11 -6
- package/dist/tyrell-theme.css +41 -0
- package/dist/tyrell.css +11 -6
- package/dist/tyrell.js +1 -1
- package/lib/styles/button.js +1 -1
- package/lib/styles/calendar-month.js +1 -1
- package/lib/styles/calendar-navigation.d.ts +1 -1
- package/lib/styles/calendar-navigation.d.ts.map +1 -1
- package/lib/styles/calendar-navigation.js +1 -1
- package/lib/styles/checkbox.js +2 -2
- package/lib/styles/copy.js +2 -2
- package/lib/styles/custom-scrollbar.d.ts +1 -1
- package/lib/styles/custom-scrollbar.d.ts.map +1 -1
- package/lib/styles/custom-scrollbar.js +2 -2
- package/lib/styles/date-picker.js +1 -1
- package/lib/styles/file-upload.d.ts +1 -1
- package/lib/styles/file-upload.d.ts.map +1 -1
- package/lib/styles/file-upload.js +3 -3
- package/lib/styles/input.js +3 -3
- package/lib/styles/radio.js +1 -1
- package/lib/styles/scroll-container.d.ts +1 -1
- package/lib/styles/scroll-container.d.ts.map +1 -1
- package/lib/styles/step.d.ts +1 -1
- package/lib/styles/step.d.ts.map +1 -1
- package/lib/styles/switch.js +2 -2
- package/lib/styles/tab.d.ts +1 -1
- package/lib/styles/tab.d.ts.map +1 -1
- package/lib/styles/tabs.d.ts +1 -1
- package/lib/styles/tabs.d.ts.map +1 -1
- package/lib/styles/tabs.js +1 -1
- package/lib/styles/textarea.d.ts +1 -1
- package/lib/styles/textarea.d.ts.map +1 -1
- package/lib/styles/textarea.js +5 -5
- package/lib/styles/wizard.d.ts +1 -1
- package/lib/styles/wizard.d.ts.map +1 -1
- package/lib/styles/wizard.js +3 -3
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
package/lib/styles/wizard.js
CHANGED
|
@@ -187,7 +187,7 @@ export const wizardStyles = `
|
|
|
187
187
|
justify-content: center;
|
|
188
188
|
position: relative;
|
|
189
189
|
z-index: 10;
|
|
190
|
-
transition: all var(--ty-wizard-transition-duration) var(--ty-wizard-transition-easing);
|
|
190
|
+
transition: var(--ty-local-transition, all var(--ty-wizard-transition-duration) var(--ty-wizard-transition-easing));
|
|
191
191
|
box-sizing: border-box;
|
|
192
192
|
flex-shrink: 0;
|
|
193
193
|
}
|
|
@@ -250,7 +250,7 @@ export const wizardStyles = `
|
|
|
250
250
|
font-size: var(--ty-font-sm, 14px);
|
|
251
251
|
font-weight: var(--ty-font-semibold, 600);
|
|
252
252
|
color: var(--ty-color-neutral);
|
|
253
|
-
transition: color 200ms;
|
|
253
|
+
transition: var(--ty-local-transition, color 200ms);
|
|
254
254
|
}
|
|
255
255
|
|
|
256
256
|
.step-indicator[aria-selected="true"] .step-label {
|
|
@@ -269,7 +269,7 @@ export const wizardStyles = `
|
|
|
269
269
|
font-size: var(--ty-font-xs, 12px);
|
|
270
270
|
font-weight: var(--ty-font-normal, 400);
|
|
271
271
|
color: var(--ty-color-neutral);
|
|
272
|
-
transition: color 200ms;
|
|
272
|
+
transition: var(--ty-local-transition, color 200ms);
|
|
273
273
|
text-align: center;
|
|
274
274
|
max-width: 120px;
|
|
275
275
|
}
|
package/lib/version.d.ts
CHANGED
package/lib/version.js
CHANGED