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

ProgressSpinner Token Names Invalid #7085

Closed
cagataycivici opened this issue Jan 14, 2025 · 0 comments
Closed

ProgressSpinner Token Names Invalid #7085

cagataycivici opened this issue Jan 14, 2025 · 0 comments
Assignees
Labels
Type: Enhancement Issue contains an enhancement related to a specific component. Additional functionality has been add
Milestone

Comments

@cagataycivici
Copy link
Member

It is invalid to use dots inside the token names so need to be replaced;

export default {
    colorScheme: {
        light: {
            root: {
                'color.1': '{red.500}',
                'color.2': '{blue.500}',
                'color.3': '{green.500}',
                'color.4': '{yellow.500}'
            }
        },
        dark: {
            root: {
                'color.1': '{red.400}',
                'color.2': '{blue.400}',
                'color.3': '{green.400}',
                'color.4': '{yellow.400}'
            }
        }
    }
};

with;

export default {
    colorScheme: {
        light: {
            root: {
                'colorOne': '{red.500}',
                'colorTwo': '{blue.500}',
                'colorThree': '{green.500}',
                'colorFour: '{yellow.500}'
            }
        },
        dark: {
            root: {
                'colorOne': '{red.400}',
                'colorTwo: '{blue.400}',
                'colorThree: '{green.400}',
                'colorFour: '{yellow.400}'
            }
        }
    }
};
@cagataycivici cagataycivici moved this to Review in PrimeVue Jan 14, 2025
@cagataycivici cagataycivici added this to the 4.3.0 milestone Jan 14, 2025
@cagataycivici cagataycivici self-assigned this Jan 14, 2025
@github-project-automation github-project-automation bot moved this from Review to Done in PrimeVue Jan 14, 2025
@mertsincan mertsincan added the Type: Enhancement Issue contains an enhancement related to a specific component. Additional functionality has been add label Jan 15, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Type: Enhancement Issue contains an enhancement related to a specific component. Additional functionality has been add
Projects
Status: Done
Development

No branches or pull requests

2 participants