@designliquido/foles 0.6.2 → 0.6.3
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/fontes/avaliador-sintatico/avaliador-sintatico.js +188 -25
- package/fontes/avaliador-sintatico/avaliador-sintatico.js.map +1 -1
- package/fontes/lexador/palavras-reservadas/foles.d.ts +253 -238
- package/fontes/lexador/palavras-reservadas/foles.js +256 -238
- package/fontes/lexador/palavras-reservadas/foles.js.map +1 -1
- package/fontes/modificadores/atributos/posicoes.d.ts +3 -0
- package/fontes/modificadores/atributos/posicoes.js +23 -13
- package/fontes/modificadores/atributos/posicoes.js.map +1 -1
- package/fontes/modificadores/deslocamento.js +5 -3
- package/fontes/modificadores/deslocamento.js.map +1 -1
- package/fontes/modificadores/filtro-fundo.js +1 -2
- package/fontes/modificadores/filtro-fundo.js.map +1 -1
- package/fontes/modificadores/filtro.js +1 -6
- package/fontes/modificadores/filtro.js.map +1 -1
- package/fontes/modificadores/trajeto-deslocamento.js +2 -2
- package/fontes/modificadores/trajeto-deslocamento.js.map +1 -1
- package/fontes/modificadores/validacoes/quantificador.js +2 -1
- package/fontes/modificadores/validacoes/quantificador.js.map +1 -1
- package/fontes/valores/dicionario-valores.js +22 -1
- package/fontes/valores/dicionario-valores.js.map +1 -1
- package/fontes/valores/metodos/borrar.d.ts +9 -0
- package/fontes/valores/metodos/borrar.js +20 -0
- package/fontes/valores/metodos/borrar.js.map +1 -0
- package/fontes/valores/metodos/brilho.d.ts +9 -0
- package/fontes/valores/metodos/brilho.js +20 -0
- package/fontes/valores/metodos/brilho.js.map +1 -0
- package/fontes/valores/metodos/escala-cinza.d.ts +9 -0
- package/fontes/valores/metodos/escala-cinza.js +20 -0
- package/fontes/valores/metodos/escala-cinza.js.map +1 -0
- package/fontes/valores/metodos/inverter.d.ts +9 -0
- package/fontes/valores/metodos/inverter.js +20 -0
- package/fontes/valores/metodos/inverter.js.map +1 -0
- package/fontes/valores/metodos/opacar.d.ts +9 -0
- package/fontes/valores/metodos/opacar.js +20 -0
- package/fontes/valores/metodos/opacar.js.map +1 -0
- package/fontes/valores/metodos/projetar-sombra.d.ts +14 -0
- package/fontes/valores/metodos/projetar-sombra.js +43 -0
- package/fontes/valores/metodos/projetar-sombra.js.map +1 -0
- package/fontes/valores/metodos/raio.d.ts +10 -0
- package/fontes/valores/metodos/raio.js +23 -0
- package/fontes/valores/metodos/raio.js.map +1 -0
- package/fontes/valores/metodos/rotacionar-matiz.d.ts +9 -0
- package/fontes/valores/metodos/rotacionar-matiz.js +20 -0
- package/fontes/valores/metodos/rotacionar-matiz.js.map +1 -0
- package/fontes/valores/metodos/saturar.d.ts +9 -0
- package/fontes/valores/metodos/saturar.js +20 -0
- package/fontes/valores/metodos/saturar.js.map +1 -0
- package/fontes/valores/metodos/sepia.d.ts +9 -0
- package/fontes/valores/metodos/sepia.js +20 -0
- package/fontes/valores/metodos/sepia.js.map +1 -0
- package/package.json +3 -2
- package/testes/listas/metodos.d.ts +10 -0
- package/testes/listas/metodos.js +49 -15
- package/testes/listas/metodos.js.map +1 -1
- package/testes/modificadores/metodos.test.js +573 -105
- package/testes/modificadores/metodos.test.js.map +1 -1
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Simbolo } from "../../lexador";
|
|
2
|
+
import { Metodo } from "./metodo";
|
|
3
|
+
export declare class RotacionarMatiz extends Metodo {
|
|
4
|
+
valor: number;
|
|
5
|
+
quantificador: string;
|
|
6
|
+
traducao: string;
|
|
7
|
+
constructor(valor: Simbolo, quantificador: Simbolo);
|
|
8
|
+
paraTexto(): string;
|
|
9
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.RotacionarMatiz = void 0;
|
|
4
|
+
const metodo_1 = require("./metodo");
|
|
5
|
+
class RotacionarMatiz extends metodo_1.Metodo {
|
|
6
|
+
constructor(valor, quantificador) {
|
|
7
|
+
super();
|
|
8
|
+
this.valor = Number(valor.lexema);
|
|
9
|
+
this.quantificador = quantificador ? quantificador.lexema : null;
|
|
10
|
+
this.traducao = 'hue-rotate';
|
|
11
|
+
}
|
|
12
|
+
paraTexto() {
|
|
13
|
+
if (this.quantificador) {
|
|
14
|
+
return `hue-rotate(${this.valor}${this.quantificador})`;
|
|
15
|
+
}
|
|
16
|
+
return `hue-rotate(${this.valor})`;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
exports.RotacionarMatiz = RotacionarMatiz;
|
|
20
|
+
//# sourceMappingURL=rotacionar-matiz.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"rotacionar-matiz.js","sourceRoot":"","sources":["../../../../fontes/valores/metodos/rotacionar-matiz.ts"],"names":[],"mappings":";;;AACA,qCAAkC;AAElC,MAAa,eAAgB,SAAQ,eAAM;IAKvC,YAAY,KAAc,EAAE,aAAsB;QAC9C,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,KAAK,GAAG,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;QAClC,IAAI,CAAC,aAAa,GAAG,aAAa,CAAC,CAAC,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC;QACjE,IAAI,CAAC,QAAQ,GAAG,YAAY,CAAC;IACjC,CAAC;IAED,SAAS;QACL,IAAI,IAAI,CAAC,aAAa,EAAE;YACpB,OAAO,cAAc,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,aAAa,GAAG,CAAA;SAC1D;QAED,OAAO,cAAc,IAAI,CAAC,KAAK,GAAG,CAAA;IACtC,CAAC;CACJ;AAnBD,0CAmBC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Simbolo } from "../../lexador";
|
|
2
|
+
import { Metodo } from "./metodo";
|
|
3
|
+
export declare class Saturar extends Metodo {
|
|
4
|
+
valor: number;
|
|
5
|
+
quantificador: string;
|
|
6
|
+
traducao: string;
|
|
7
|
+
constructor(valor: Simbolo, quantificador: Simbolo);
|
|
8
|
+
paraTexto(): string;
|
|
9
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Saturar = void 0;
|
|
4
|
+
const metodo_1 = require("./metodo");
|
|
5
|
+
class Saturar extends metodo_1.Metodo {
|
|
6
|
+
constructor(valor, quantificador) {
|
|
7
|
+
super();
|
|
8
|
+
this.valor = Number(valor.lexema);
|
|
9
|
+
this.quantificador = quantificador ? quantificador.lexema : null;
|
|
10
|
+
this.traducao = 'saturate';
|
|
11
|
+
}
|
|
12
|
+
paraTexto() {
|
|
13
|
+
if (this.quantificador) {
|
|
14
|
+
return `saturate(${this.valor}${this.quantificador})`;
|
|
15
|
+
}
|
|
16
|
+
return `saturate(${this.valor})`;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
exports.Saturar = Saturar;
|
|
20
|
+
//# sourceMappingURL=saturar.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"saturar.js","sourceRoot":"","sources":["../../../../fontes/valores/metodos/saturar.ts"],"names":[],"mappings":";;;AACA,qCAAkC;AAElC,MAAa,OAAQ,SAAQ,eAAM;IAK/B,YAAY,KAAc,EAAE,aAAsB;QAC9C,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,KAAK,GAAG,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;QAClC,IAAI,CAAC,aAAa,GAAG,aAAa,CAAC,CAAC,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC;QACjE,IAAI,CAAC,QAAQ,GAAG,UAAU,CAAC;IAC/B,CAAC;IAED,SAAS;QACL,IAAI,IAAI,CAAC,aAAa,EAAE;YACpB,OAAO,YAAY,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,aAAa,GAAG,CAAA;SACxD;QAED,OAAO,YAAY,IAAI,CAAC,KAAK,GAAG,CAAA;IACpC,CAAC;CACJ;AAnBD,0BAmBC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Simbolo } from "../../lexador";
|
|
2
|
+
import { Metodo } from "./metodo";
|
|
3
|
+
export declare class Sepia extends Metodo {
|
|
4
|
+
valor: number;
|
|
5
|
+
quantificador: string;
|
|
6
|
+
traducao: string;
|
|
7
|
+
constructor(valor: Simbolo, quantificador: Simbolo);
|
|
8
|
+
paraTexto(): string;
|
|
9
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Sepia = void 0;
|
|
4
|
+
const metodo_1 = require("./metodo");
|
|
5
|
+
class Sepia extends metodo_1.Metodo {
|
|
6
|
+
constructor(valor, quantificador) {
|
|
7
|
+
super();
|
|
8
|
+
this.valor = Number(valor.lexema);
|
|
9
|
+
this.quantificador = quantificador ? quantificador.lexema : null;
|
|
10
|
+
this.traducao = 'sepia';
|
|
11
|
+
}
|
|
12
|
+
paraTexto() {
|
|
13
|
+
if (this.quantificador) {
|
|
14
|
+
return `sepia(${this.valor}${this.quantificador})`;
|
|
15
|
+
}
|
|
16
|
+
return `sepia(${this.valor})`;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
exports.Sepia = Sepia;
|
|
20
|
+
//# sourceMappingURL=sepia.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sepia.js","sourceRoot":"","sources":["../../../../fontes/valores/metodos/sepia.ts"],"names":[],"mappings":";;;AACA,qCAAkC;AAElC,MAAa,KAAM,SAAQ,eAAM;IAK7B,YAAY,KAAc,EAAE,aAAsB;QAC9C,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,KAAK,GAAG,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;QAClC,IAAI,CAAC,aAAa,GAAG,aAAa,CAAC,CAAC,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC;QACjE,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;IAC5B,CAAC;IAED,SAAS;QACL,IAAI,IAAI,CAAC,aAAa,EAAE;YACpB,OAAO,SAAS,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,aAAa,GAAG,CAAA;SACrD;QAED,OAAO,SAAS,IAAI,CAAC,KAAK,GAAG,CAAA;IACjC,CAAC;CACJ;AAnBD,sBAmBC"}
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@designliquido/foles",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.3",
|
|
4
4
|
"description": "Linguagem de folhas de estilo para documentos em geral em português",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
7
|
-
"empacotar": "rimraf ./dist && tsc && copyfiles -V ./bin/foles ./bin/foles.cmd ./dist && copyfiles -V ./package.json ./dist && copyfiles -V ./README.md ./dist",
|
|
7
|
+
"empacotar": "yarn rimraf ./dist && tsc && yarn copyfiles -V ./bin/foles ./bin/foles.cmd ./dist && yarn copyfiles -V ./package.json ./dist && yarn copyfiles -V ./README.md ./dist",
|
|
8
8
|
"testes-unitarios": "jest --coverage",
|
|
9
9
|
"testes-unitarios:insignias": "jest-coverage-badges --output ./recursos/imagens"
|
|
10
10
|
},
|
|
@@ -36,6 +36,7 @@
|
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/jest": "^29.2.0",
|
|
38
38
|
"@types/node": "^18.6.3",
|
|
39
|
+
"copyfiles": "^2.4.1",
|
|
39
40
|
"jest": "^29.2.2",
|
|
40
41
|
"jest-coverage-badges": "^1.1.2",
|
|
41
42
|
"release-it": "^15.5.0",
|
|
@@ -7,4 +7,14 @@ export declare const MetodoLinear: Array<string>;
|
|
|
7
7
|
export declare const MetodoCalcular: Array<string>;
|
|
8
8
|
export declare const MetodoGradienteLinear: Array<string>;
|
|
9
9
|
export declare const MetodoContraste: Array<string>;
|
|
10
|
+
export declare const MetodoBorrar: Array<string>;
|
|
11
|
+
export declare const MetodoBrilho: Array<string>;
|
|
12
|
+
export declare const MetodoRaio: Array<string>;
|
|
13
|
+
export declare const MetodoEscalaCinza: Array<string>;
|
|
14
|
+
export declare const MetodoInverter: Array<string>;
|
|
15
|
+
export declare const MetodoOpacar: Array<string>;
|
|
16
|
+
export declare const MetodoSaturar: Array<string>;
|
|
17
|
+
export declare const MetodoSepia: Array<string>;
|
|
18
|
+
export declare const MetodoRotacionarMatiz: Array<string>;
|
|
19
|
+
export declare const MetodoProjetarSombra: Array<string>;
|
|
10
20
|
export declare const TraducaoValoresMetodos: Object;
|
package/testes/listas/metodos.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.TraducaoValoresMetodos = exports.MetodoContraste = exports.MetodoGradienteLinear = exports.MetodoCalcular = exports.MetodoLinear = exports.MetodoCurvaCubica = exports.MetodoPassos = exports.MetodoMinMax = exports.MetodoLimitar = exports.MetodoEncaixarConteudo = void 0;
|
|
3
|
+
exports.TraducaoValoresMetodos = exports.MetodoProjetarSombra = exports.MetodoRotacionarMatiz = exports.MetodoSepia = exports.MetodoSaturar = exports.MetodoOpacar = exports.MetodoInverter = exports.MetodoEscalaCinza = exports.MetodoRaio = exports.MetodoBrilho = exports.MetodoBorrar = exports.MetodoContraste = exports.MetodoGradienteLinear = exports.MetodoCalcular = exports.MetodoLinear = exports.MetodoCurvaCubica = exports.MetodoPassos = exports.MetodoMinMax = exports.MetodoLimitar = exports.MetodoEncaixarConteudo = void 0;
|
|
4
4
|
exports.MetodoEncaixarConteudo = [
|
|
5
5
|
'altura-maxima',
|
|
6
6
|
'altura-máxima',
|
|
@@ -65,17 +65,62 @@ exports.MetodoGradienteLinear = [
|
|
|
65
65
|
exports.MetodoContraste = [
|
|
66
66
|
'filtro',
|
|
67
67
|
];
|
|
68
|
+
exports.MetodoBorrar = [
|
|
69
|
+
'filtro',
|
|
70
|
+
];
|
|
71
|
+
exports.MetodoBrilho = [
|
|
72
|
+
'filtro',
|
|
73
|
+
];
|
|
74
|
+
exports.MetodoRaio = [
|
|
75
|
+
'deslocamento',
|
|
76
|
+
'trajeto-deslocamento',
|
|
77
|
+
];
|
|
78
|
+
exports.MetodoEscalaCinza = [
|
|
79
|
+
'filtro-fundo',
|
|
80
|
+
];
|
|
81
|
+
exports.MetodoInverter = [
|
|
82
|
+
'filtro-fundo',
|
|
83
|
+
];
|
|
84
|
+
exports.MetodoOpacar = [
|
|
85
|
+
'filtro-fundo',
|
|
86
|
+
];
|
|
87
|
+
exports.MetodoSaturar = [
|
|
88
|
+
'filtro-fundo',
|
|
89
|
+
];
|
|
90
|
+
exports.MetodoSepia = [
|
|
91
|
+
'filtro-fundo',
|
|
92
|
+
];
|
|
93
|
+
exports.MetodoRotacionarMatiz = [
|
|
94
|
+
'filtro-fundo',
|
|
95
|
+
];
|
|
96
|
+
exports.MetodoProjetarSombra = [
|
|
97
|
+
'filtro-fundo',
|
|
98
|
+
];
|
|
68
99
|
exports.TraducaoValoresMetodos = {
|
|
69
100
|
'altura-maxima': 'max-height',
|
|
70
101
|
'altura-máxima': 'max-height',
|
|
71
102
|
'altura-minima': 'min-height',
|
|
72
103
|
'altura-mínima': 'min-height',
|
|
73
104
|
'altura': 'height',
|
|
105
|
+
'conteudo': 'content',
|
|
106
|
+
'conteúdo': 'content',
|
|
107
|
+
'deslocamento': 'offset',
|
|
108
|
+
'espaçamento': 'gap',
|
|
109
|
+
'espacamento': 'gap',
|
|
110
|
+
'filtro': 'filter',
|
|
111
|
+
'filtro-fundo': 'backdrop-filter',
|
|
112
|
+
'grade': 'grid',
|
|
113
|
+
'imagem-mascara': 'mask-image',
|
|
114
|
+
'imagem-máscara': 'mask-image',
|
|
74
115
|
'largura-maxima': 'max-width',
|
|
75
116
|
'largura-máxima': 'max-width',
|
|
76
117
|
'largura-minima': 'min-width',
|
|
77
118
|
'largura-mínima': 'min-width',
|
|
78
119
|
'largura': 'width',
|
|
120
|
+
'modelo-colunas-em-grade': 'grid-template-columns',
|
|
121
|
+
'modelo-em-grade': 'grid-template',
|
|
122
|
+
'modelo-linhas-em-grade': 'grid-template-rows',
|
|
123
|
+
'origem-imagem-borda': 'border-image-source',
|
|
79
124
|
'tamanho-colunas-em-grade': 'grid-auto-columns',
|
|
80
125
|
'tamanho-em-linha': 'inline-size',
|
|
81
126
|
'tamanho-linhas-em-grade': 'grid-auto-rows',
|
|
@@ -87,23 +132,12 @@ exports.TraducaoValoresMetodos = {
|
|
|
87
132
|
'tamanho-mínimo-em-bloco': 'min-block-size',
|
|
88
133
|
'tamanho-minimo-em-linha': 'min-inline-size',
|
|
89
134
|
'tamanho-mínimo-em-linha': 'min-inline-size',
|
|
90
|
-
'grade': 'grid',
|
|
91
135
|
'tempo-transicao': 'transition-timing-function',
|
|
92
136
|
'tempo-transição': 'transition-timing-function',
|
|
93
|
-
'
|
|
94
|
-
'velocidade-animação': 'animation-timing-function',
|
|
137
|
+
'trajeto-deslocamento': 'offset-path',
|
|
95
138
|
'transicao': 'transition',
|
|
96
139
|
'transição': 'transition',
|
|
97
|
-
'
|
|
98
|
-
'
|
|
99
|
-
'modelo-linhas-em-grade': 'grid-template-rows',
|
|
100
|
-
'espaçamento': 'gap',
|
|
101
|
-
'espacamento': 'gap',
|
|
102
|
-
'imagem-mascara': 'mask-image',
|
|
103
|
-
'imagem-máscara': 'mask-image',
|
|
104
|
-
'origem-imagem-borda': 'border-image-source',
|
|
105
|
-
'conteudo': 'content',
|
|
106
|
-
'conteúdo': 'content',
|
|
107
|
-
'filtro': 'filter',
|
|
140
|
+
'velocidade-animação': 'animation-timing-function',
|
|
141
|
+
'velocidade-animacao': 'animation-timing-function',
|
|
108
142
|
};
|
|
109
143
|
//# sourceMappingURL=metodos.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"metodos.js","sourceRoot":"","sources":["../../../testes/listas/metodos.ts"],"names":[],"mappings":";;;AAAa,QAAA,sBAAsB,GAAkB;IACjD,eAAe;IACf,eAAe;IACf,eAAe;IACf,eAAe;IACf,QAAQ;IACR,gBAAgB;IAChB,gBAAgB;IAChB,gBAAgB;IAChB,gBAAgB;IAChB,SAAS;IACT,0BAA0B;IAC1B,kBAAkB;IAClB,yBAAyB;IACzB,yBAAyB;IACzB,yBAAyB;IACzB,yBAAyB;IACzB,yBAAyB;IACzB,yBAAyB;IACzB,yBAAyB;IACzB,yBAAyB;IACzB,yBAAyB;IACzB,iBAAiB;CACpB,CAAC;AAEW,QAAA,aAAa,GAAkB;IACxC,QAAQ;CACX,CAAC;AAEW,QAAA,YAAY,GAAkB;IACvC,OAAO;IACP,0BAA0B;IAC1B,yBAAyB;IACzB,yBAAyB;IACzB,wBAAwB;CAC3B,CAAC;AAEW,QAAA,YAAY,GAAkB;IACvC,iBAAiB;IACjB,iBAAiB;IACjB,qBAAqB;IACrB,qBAAqB;CACxB,CAAC;AAEW,QAAA,iBAAiB,GAAkB;IAC5C,iBAAiB;IACjB,iBAAiB;IACjB,qBAAqB;IACrB,qBAAqB;CACxB,CAAC;AAEW,QAAA,YAAY,GAAkB;IACvC,WAAW;IACX,WAAW;CACd,CAAC;AAEW,QAAA,cAAc,GAAkB;IACzC,aAAa;IACb,aAAa;CAChB,CAAC;AAEW,QAAA,qBAAqB,GAAkB;IAChD,gBAAgB;IAChB,gBAAgB;IAChB,qBAAqB;IACrB,UAAU;IACV,UAAU;CACb,CAAC;AAEW,QAAA,eAAe,GAAkB;IAC1C,QAAQ;CACX,CAAC;
|
|
1
|
+
{"version":3,"file":"metodos.js","sourceRoot":"","sources":["../../../testes/listas/metodos.ts"],"names":[],"mappings":"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"}
|