This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="table-column"> | |
<table class="table-default"> | |
<tbody> | |
<tr> | |
<th scope="row">Código do Produto</th> | |
<td>E88</td> | |
</tr> | |
<tr> | |
<th scope="row">Cor do Produto</th> | |
<td>Preto</td> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am kodiyak on github. | |
* I am math536 (https://keybase.io/math536) on keybase. | |
* I have a public key ASCM6oMCwgkpjswCylnjYGbj5EScL7DYU172yu1zy2IFrwo | |
To claim this, I am signing this object: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { TypedEmitter } from 'tiny-typed-emitter' | |
type TypeLoader = { | |
[key: string]: number | |
} | |
class Loaders extends TypedEmitter<{ | |
start: (name: string) => void | |
finish: (name: string) => void | |
forceUpdate: () => void |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
env: { | |
browser: true, | |
es2021: true, | |
node: true | |
}, | |
extends: ['plugin:react/recommended', 'plugin:prettier/recommended', 'standard'], | |
parser: '@typescript-eslint/parser', | |
parserOptions: { | |
ecmaFeatures: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
import { Box, BoxProps, useColorModeValue } from '@chakra-ui/react' | |
export interface BoxColorModeProps extends BoxProps { | |
dark?: BoxProps | |
light?: BoxProps | |
} | |
const BoxColorMode: React.FC<BoxColorModeProps> = ({ | |
dark, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { PromiseQueueItem, PromiseItem } from './PromiseQueueItem' | |
export class PromiseQueue { | |
public isActive = true | |
public isRunning = false | |
private promises: PromiseQueueItem[] = [] | |
public get promisesRunning() { | |
return this.promises.filter((promiseItem) => promiseItem.isRunning) | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
purge: [], | |
target: 'relaxed', | |
prefix: '', | |
important: false, | |
separator: ':', | |
theme: { | |
themeVariants: ['dark', 'light'], | |
screens: { | |
sm: '640px', |