Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pwa 3174 #4228

Closed
wants to merge 21 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
365c020
Updating dependencies to tailwind v3.3, updating configurations with …
justinconabree Mar 29, 2023
4c0b681
Changing tokens to use tailwind config, refactor for border radius to…
justinconabree Mar 29, 2023
c0cfa92
Fixing self reference in config, fixing broken index.module.css, fixi…
justinconabree Mar 29, 2023
301b226
WIP going through tailwind TODOs and changing to tailwind values, fix…
justinconabree Mar 30, 2023
46cb4dc
Fixing priority issues, adding new theme values, fixing theme and tokens
justinconabree Apr 11, 2023
793fdcf
Changing all media queries to use config screen sizes, adding new scr…
justinconabree Jun 8, 2023
c976657
Fixing lint and prettier
justinconabree Jun 8, 2023
ee54e29
Merge remote-tracking branch 'origin/develop' into jconabree/tailwind…
justinconabree Jun 8, 2023
7e7363b
Fixing tailwind review comments, updating tailwind doc
justinconabree Jun 8, 2023
832c75e
fix prettier
justinconabree Jun 8, 2023
985e94a
Removing checkmo from tests
justinconabree Jun 8, 2023
5dac7c0
fix jest test for accout menu
justinconabree Jun 8, 2023
3dccb14
fixing visibility priority issues
justinconabree Jun 8, 2023
9709b1d
Merge branch 'develop' into jconabree/tailwind-v3-update
glo42707 Aug 10, 2023
288028b
Merge branch 'develop' into jconabree/tailwind-v3-update
glo82145 Oct 4, 2023
a7b7178
PWA-3174::[feature]: Tailwind v3 support
glo82145 Oct 4, 2023
6c22c11
Merge branch 'develop' into jconabree/tailwind-v3-update
glo82145 Oct 4, 2023
332b5c9
Merge branch 'develop' into jconabree/tailwind-v3-update
glo82145 Oct 4, 2023
303f641
Merge branch 'develop' into jconabree/tailwind-v3-update
glo42707 Oct 19, 2023
8211c1e
Merge branch 'develop' into jconabree/tailwind-v3-update
justinconabree Nov 9, 2023
b32cfd1
Merge branch 'develop' into jconabree/tailwind-v3-update
glo82145 Dec 26, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
"lodash.debounce": "~4.0.8",
"prettier": "~1.16.4",
"rimraf": "~2.6.3",
"tailwindcss": "~2.2.7"
"tailwindcss": "~3.3.0"
},
"optionalDependencies": {
"bundlesize": "~0.18.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
.payment_type {
}

@media (max-width: 960px) {
@media screen(-lg) {
.edit_text {
display: none;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

@media only screen and (max-width: 768px) {
.root {
background-attachment: scroll !important;
flex-basis: 100%;
@apply !bg-scroll;
@apply basis-full;
}
}
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
.root:empty {
display: none;
.root {
composes: empty_hidden from global;
}

.root_inline {
composes: root;
display: inline-block;
@apply inline-block;
}
5 changes: 1 addition & 4 deletions packages/pagebuilder/lib/ContentTypes/Tabs/tabs.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -125,16 +125,13 @@ ul.navigation::-webkit-scrollbar {

.panel {
min-height: inherit;
composes: !empty_hidden from global;
}

.panelSelected {
display: block;
}

.panel:empty {
display: none !important; /* Necessary because of inline styles; to be fixed in MC-18326 */
}

.content {
border: var(--tabs-border-width) var(--tabs-border) var(--tabs-border-color);
overflow: hidden;
Expand Down
18 changes: 17 additions & 1 deletion packages/pwa-theme-venia/lib/colors.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,20 @@ const getPropertyValueFunction = property => {
};
};

module.exports = { declareColors, getColors };
const hexToRgb = color => {
if (color.indexOf('#') !== 0) {
return color;
}

return color
.match(/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i)
.map(value => {
return parseInt(value, 16);
})
.filter(value => {
return !isNaN(value);
})
.join(' ');
};

module.exports = { declareColors, getColors, hexToRgb };
189 changes: 141 additions & 48 deletions packages/pwa-theme-venia/tailwind.preset.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
// TODO @TW: see bottom too
//const aspectRatioPlugin = require('@tailwindcss/aspect-ratio');
const { getColors } = require('./lib/colors');
const { getColors, hexToRgb } = require('./lib/colors');
const corePlugin = require('./plugins');
const defaultTheme = require('tailwindcss/defaultTheme');

const colors = {
brand: {
Expand All @@ -23,7 +24,8 @@ const extend = {
stretch: 'stretch'
},
animation: {
spin: 'spin 1920ms linear infinite'
spin: 'spin 1920ms linear infinite',
shimmer: 'shimmer 1s linear infinite forwards'
},
backgroundColor: theme => ({
body: '#FFF',
Expand All @@ -38,20 +40,34 @@ const extend = {
swatch: theme('colors.gray.100'),
'swatch-selected': `linear-gradient(-45deg, rgba(0, 0, 0, 0.2), transparent), ${theme(
'colors.gray.100'
)}`
)}`,
shimmer: `linear-gradient(
to right,
${theme('colors.gray.50/0')} 0%,
${theme('colors.gray.50')} 40%,
${theme('colors.gray.50/0')} 80%,
${theme('colors.gray.50/0')} 100%
)`
}),
backgroundSize: theme => ({
maxSite: `${theme('maxWidth.site')} 100%`
}),
borderColor: theme => ({
currentColor: 'currentColor',
button: theme('colors.gray.600'),
error: theme('colors.red.400'),
info: theme('colors.green.600'),
input: theme('colors.gray.600'),
inputFocus: theme('colors.gray.700'),
light: theme('colors.gray.100'),
shaded: {
10: 'rgba(0, 0, 0, 0.1)',
15: 'rgba(0, 0, 0, 0.15)',
20: 'rgba(0, 0, 0, 0.2)'
},
strong: theme('colors.gray.800'),
swatch: theme('colors.gray.400'),
base: theme('colors.gray.400'),
subtle: theme('colors.gray.300'),
success: theme('colors.green.600'),
warning: theme('colors.yellow.500')
Expand All @@ -60,13 +76,11 @@ const extend = {
// Primitive
radius1: '4px',
radius2: '8px',
radius3: '100%'

// Generic
// TODO @TW: review. This causes error.
// radiusBox: theme('borderRadius.radius2'),
// radiusButton: theme('borderRadius.radius1'),
// radiusInput: theme('borderRadius.radius1'),
radius3: '100%',
box: defaultTheme.borderRadius.md,
button: defaultTheme.borderRadius.full,
input: defaultTheme.borderRadius.md,
badge: defaultTheme.borderRadius.md
},
borderWidth: {
DEFAULT: '1px'
Expand All @@ -83,6 +97,9 @@ const extend = {
thin: `0 1px ${theme('colors.gray.300')}`
}),
colors: getColors(colors),
content: {
empty: ''
},
flex: {
textInput: '0 0 100%'
},
Expand All @@ -91,16 +108,16 @@ const extend = {
serif: ['Source Serif Pro', 'serif']
},
fontSize: {
'2xs': '0.6875rem', // 11px
xs: '0.75rem', // 12px
sm: '0.875rem', // 14px
base: '1rem', // 16px
lg: '1.25rem', // 18px
xl: '1.5rem', // 24px
'2xl': '2.125rem', // 34px
'3xl': '3rem', // 48px
'4xl': '3.75rem', // 60px
'5xl': '6rem', // 96px
'2xs': ['0.6875rem', '1.5'], // 11px
xs: ['0.75rem', '1.5'], // 12px
sm: ['0.875rem', '1.5'], // 14px
base: ['1rem', '1.5'], // 16px
lg: ['1.25rem', '1.5'], // 18px
xl: ['1.5rem', '1.5'], // 24px
'2xl': ['2.125rem', '1.5'], // 34px
'3xl': ['3rem', '1.5'], // 48px
'4xl': ['3.75rem', '1.5'], // 60px
'5xl': ['6rem', '1'], // 96px
inherit: 'inherit'
},
fontWeight: {
Expand Down Expand Up @@ -132,6 +149,16 @@ const extend = {
justifyContent: {
stretch: 'stretch'
},
keyframes: {
shimmer: {
'0%': {
transform: 'translateX(-100%)'
},
'100%': {
transform: 'translateX(100%)'
}
}
},
lineHeight: {
DEFAULT: '1.5'
},
Expand All @@ -142,12 +169,14 @@ const extend = {
modal: '360px',
site: '1440px'
},
minHeight: {
auto: 'auto'
},
minWidth: {
auto: 'auto'
},
minHeight: theme => ({
auto: 'auto',
4: theme('spacing.4')
}),
minWidth: theme => ({
auto: 'auto',
32: theme('spacing.32')
}),
// TODO @TW: review. Use the abstracted values in code.
opacity: {
disabled: 50,
Expand All @@ -167,17 +196,25 @@ const extend = {
lg: '3rem',
DEFAULT: '1.5rem',
filterSidebarWidth: '325px',
full: '100%'
full: '100%',
header: '5rem',
'7.5': '1.875rem',
'100vw': '100vw',
'75vw': '75vw',
'50vw': '50vw',
'25vw': '25vw'
},
textColor: theme => ({
colorDefault: theme('colors.gray.900'), // TODO @TW naming collision: TW puts "fontSize" + "color" under "text-" prefix
error: theme('colors.red.700'),
subtle: theme('colors.gray.600'),
DEFAULT: theme('colors.gray.900')
}),
width: {
fit: 'fit-content'
},
width: theme => ({
fit: 'fit-content',
swatch: '3.875rem',
maxSite: theme('maxWidth.site')
}),
zIndex: {
behind: '-1',
surface: '1',
Expand All @@ -201,14 +238,59 @@ const theme = {
// Override Tailwind defaults and preset config.
screens: {
xs: '480px',
'-xs': {
max: '479px'
},
sm: '640px',
'-sm': {
max: '639px'
},
hsm: {
raw: '(min-height: 640px)'
},
'-hsm': {
raw: '(max-height: 639px)'
},
md: '800px',
'-md': {
max: '799px'
},
hmd: {
raw: '(min-height: 800px)'
},
'-hmd': {
raw: '(max-height: 799px)'
},
lg: '960px',
xl: '1120px',
'-lg': {
max: '959px'
},
hlg: {
raw: '(min-height: 960px)'
},
'-hlg': {
raw: '(max-height: 959px)'
},
xl: '1024px',
'-xl': {
max: '1023px'
},
'2xl': '1280px',
'-2xl': {
max: '-1279px'
},
'3xl': '1440px',
'-3xl': {
max: '-1439px'
},
'4xl': '1600px',
max: '1920px'
'-4xl': {
max: '1599px'
},
max: '1920px',
'-max': {
max: '1920px'
}
},
transitionDuration: {
xs: '64ms',
Expand All @@ -229,7 +311,32 @@ const theme = {
color: theme('colors.neutral.900')
},
root: {
colors
colors: {
...colors,
blue: {
100: hexToRgb(theme('colors.blue.100')),
400: hexToRgb(theme('colors.blue.400')),
700: hexToRgb(theme('colors.blue.700'))
},
gray: {
50: hexToRgb(theme('colors.gray.50')),
100: hexToRgb(theme('colors.gray.100')),
300: hexToRgb(theme('colors.gray.300')),
400: hexToRgb(theme('colors.gray.400')),
500: hexToRgb(theme('colors.gray.500')),
600: hexToRgb(theme('colors.gray.600')),
700: hexToRgb(theme('colors.gray.700')),
900: hexToRgb(theme('colors.gray.900'))
},
green: {
600: hexToRgb(theme('colors.green.600'))
},
orange: hexToRgb(theme('colors.amber.500')),
red: {
400: hexToRgb(theme('colors.red.400')),
700: hexToRgb(theme('colors.red.700'))
}
}
}
}
})
Expand All @@ -239,21 +346,7 @@ const config = {
// TODO @TW: see top too. Had to disable to get working locally.
// plugins: [aspectRatioPlugin, corePlugin],
plugins: [corePlugin],
theme,
variants: {
extend: {
backgroundColor: ['checked'],
backgroundImage: ['focus'],
borderColor: ['even'],
borderStyle: ['even'],
borderWidth: ['even', 'last'],
boxShadow: ['active'],
fontWeight: ['first'],
outline: ['active', 'focus'],
pointerEvents: ['disabled'],
textColor: ['disabled', 'first']
}
}
theme
};

module.exports = config;
2 changes: 2 additions & 0 deletions packages/pwa-theme-venia/tw-issues.txt
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,8 @@ GOOD PATTERN (only variants in JSX, not "root"):
.root_closed { composes: root; }
.root_open { composes: root; }

Possible alternative fix is to use Tailwind's @apply directive though composition is prefered


// ----------------------------------------------
// B7. Prettier mangles TW2 arbitrary values syntax
Expand Down