@designliquido/foles 0.6.3 → 0.7.1

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.
Files changed (81) hide show
  1. package/fontes/avaliador-sintatico/avaliador-sintatico.js +347 -0
  2. package/fontes/avaliador-sintatico/avaliador-sintatico.js.map +1 -1
  3. package/fontes/foles.js +1 -0
  4. package/fontes/foles.js.map +1 -1
  5. package/fontes/lexador/palavras-reservadas/foles.d.ts +141 -113
  6. package/fontes/lexador/palavras-reservadas/foles.js +141 -116
  7. package/fontes/lexador/palavras-reservadas/foles.js.map +1 -1
  8. package/fontes/modificadores/atributos/gerais.js +167 -165
  9. package/fontes/modificadores/atributos/gerais.js.map +1 -1
  10. package/fontes/modificadores/atributos/quantificadores.js +1 -0
  11. package/fontes/modificadores/atributos/quantificadores.js.map +1 -1
  12. package/fontes/modificadores/transformar.js +2 -1
  13. package/fontes/modificadores/transformar.js.map +1 -1
  14. package/fontes/valores/dicionario-valores.js +41 -0
  15. package/fontes/valores/dicionario-valores.js.map +1 -1
  16. package/fontes/valores/metodos/escalamento-3d.d.ts +10 -0
  17. package/fontes/valores/metodos/escalamento-3d.js +18 -0
  18. package/fontes/valores/metodos/escalamento-3d.js.map +1 -0
  19. package/fontes/valores/metodos/escalamento-eixo-z.d.ts +8 -0
  20. package/fontes/valores/metodos/escalamento-eixo-z.js +16 -0
  21. package/fontes/valores/metodos/escalamento-eixo-z.js.map +1 -0
  22. package/fontes/valores/metodos/escalamento-horizontal.d.ts +8 -0
  23. package/fontes/valores/metodos/escalamento-horizontal.js +16 -0
  24. package/fontes/valores/metodos/escalamento-horizontal.js.map +1 -0
  25. package/fontes/valores/metodos/escalamento-vertical.d.ts +8 -0
  26. package/fontes/valores/metodos/escalamento-vertical.js +16 -0
  27. package/fontes/valores/metodos/escalamento-vertical.js.map +1 -0
  28. package/fontes/valores/metodos/escalamento.d.ts +9 -0
  29. package/fontes/valores/metodos/escalamento.js +20 -0
  30. package/fontes/valores/metodos/escalamento.js.map +1 -0
  31. package/fontes/valores/metodos/gradiente-linear.js +1 -0
  32. package/fontes/valores/metodos/gradiente-linear.js.map +1 -1
  33. package/fontes/valores/metodos/inclinar-horizontal.d.ts +9 -0
  34. package/fontes/valores/metodos/inclinar-horizontal.js +21 -0
  35. package/fontes/valores/metodos/inclinar-horizontal.js.map +1 -0
  36. package/fontes/valores/metodos/inclinar-vertical.d.ts +9 -0
  37. package/fontes/valores/metodos/inclinar-vertical.js +21 -0
  38. package/fontes/valores/metodos/inclinar-vertical.js.map +1 -0
  39. package/fontes/valores/metodos/inclinar.d.ts +11 -0
  40. package/fontes/valores/metodos/inclinar.js +28 -0
  41. package/fontes/valores/metodos/inclinar.js.map +1 -0
  42. package/fontes/valores/metodos/perspectivar.d.ts +9 -0
  43. package/fontes/valores/metodos/perspectivar.js +20 -0
  44. package/fontes/valores/metodos/perspectivar.js.map +1 -0
  45. package/fontes/valores/metodos/raio.js +1 -0
  46. package/fontes/valores/metodos/raio.js.map +1 -1
  47. package/fontes/valores/metodos/rotacionar-eixo-z.d.ts +9 -0
  48. package/fontes/valores/metodos/rotacionar-eixo-z.js +21 -0
  49. package/fontes/valores/metodos/rotacionar-eixo-z.js.map +1 -0
  50. package/fontes/valores/metodos/rotacionar-horizontal.d.ts +9 -0
  51. package/fontes/valores/metodos/rotacionar-horizontal.js +21 -0
  52. package/fontes/valores/metodos/rotacionar-horizontal.js.map +1 -0
  53. package/fontes/valores/metodos/rotacionar-matiz.js +1 -0
  54. package/fontes/valores/metodos/rotacionar-matiz.js.map +1 -1
  55. package/fontes/valores/metodos/rotacionar-vertical.d.ts +9 -0
  56. package/fontes/valores/metodos/rotacionar-vertical.js +21 -0
  57. package/fontes/valores/metodos/rotacionar-vertical.js.map +1 -0
  58. package/fontes/valores/metodos/rotacionar.d.ts +9 -0
  59. package/fontes/valores/metodos/rotacionar.js +21 -0
  60. package/fontes/valores/metodos/rotacionar.js.map +1 -0
  61. package/fontes/valores/metodos/translacao-3d.d.ts +13 -0
  62. package/fontes/valores/metodos/translacao-3d.js +42 -0
  63. package/fontes/valores/metodos/translacao-3d.js.map +1 -0
  64. package/fontes/valores/metodos/translacao-eixo-z.d.ts +9 -0
  65. package/fontes/valores/metodos/translacao-eixo-z.js +20 -0
  66. package/fontes/valores/metodos/translacao-eixo-z.js.map +1 -0
  67. package/fontes/valores/metodos/translacao-horizontal.d.ts +9 -0
  68. package/fontes/valores/metodos/translacao-horizontal.js +20 -0
  69. package/fontes/valores/metodos/translacao-horizontal.js.map +1 -0
  70. package/fontes/valores/metodos/translacao-vertical.d.ts +9 -0
  71. package/fontes/valores/metodos/translacao-vertical.js +20 -0
  72. package/fontes/valores/metodos/translacao-vertical.js.map +1 -0
  73. package/fontes/valores/metodos/translacao.d.ts +11 -0
  74. package/fontes/valores/metodos/translacao.js +28 -0
  75. package/fontes/valores/metodos/translacao.js.map +1 -0
  76. package/package.json +1 -1
  77. package/testes/listas/metodos.d.ts +5 -0
  78. package/testes/listas/metodos.js +17 -1
  79. package/testes/listas/metodos.js.map +1 -1
  80. package/testes/modificadores/metodos.test.js +1248 -180
  81. package/testes/modificadores/metodos.test.js.map +1 -1
@@ -0,0 +1,11 @@
1
+ import { Simbolo } from "../../lexador";
2
+ import { Metodo } from "./metodo";
3
+ export declare class Translacao extends Metodo {
4
+ valor1: number;
5
+ quantificador1: string;
6
+ valor2: number;
7
+ quantificador2: string;
8
+ traducao: string;
9
+ constructor(valor1: Simbolo, quantificador1: Simbolo, valor2: Simbolo, quantificador2: Simbolo);
10
+ paraTexto(): string;
11
+ }
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Translacao = void 0;
4
+ const metodo_1 = require("./metodo");
5
+ class Translacao extends metodo_1.Metodo {
6
+ constructor(valor1, quantificador1, valor2, quantificador2) {
7
+ super();
8
+ this.valor1 = Number(valor1.lexema);
9
+ this.quantificador1 = quantificador1 ? quantificador1.lexema : null;
10
+ this.valor2 = valor2 ? Number(valor2.lexema) : null;
11
+ this.quantificador2 = quantificador2 ? quantificador2.lexema : null;
12
+ this.traducao = 'translate';
13
+ }
14
+ paraTexto() {
15
+ if (!this.quantificador1 && !this.valor2 && !this.quantificador2) {
16
+ return `translate(${this.valor1})`;
17
+ }
18
+ if (!this.valor2 && !this.quantificador2) {
19
+ this.quantificador1 === 'graus' ? this.quantificador1 = 'deg' : null;
20
+ return `translate(${this.valor1}${this.quantificador1})`;
21
+ }
22
+ this.quantificador1 === 'graus' ? this.quantificador1 = 'deg' : null;
23
+ this.quantificador2 === 'graus' ? this.quantificador2 = 'deg' : null;
24
+ return `translate(${this.valor1}${this.quantificador1}, ${this.valor2}${this.quantificador2})`;
25
+ }
26
+ }
27
+ exports.Translacao = Translacao;
28
+ //# sourceMappingURL=translacao.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"translacao.js","sourceRoot":"","sources":["../../../../fontes/valores/metodos/translacao.ts"],"names":[],"mappings":";;;AACA,qCAAkC;AAElC,MAAa,UAAW,SAAQ,eAAM;IAOlC,YAAY,MAAe,EAAE,cAAuB,EAAE,MAAe,EAAE,cAAuB;QAC1F,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;QACpC,IAAI,CAAC,cAAc,GAAG,cAAc,CAAC,CAAC,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC;QACpE,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;QACpD,IAAI,CAAC,cAAc,GAAG,cAAc,CAAC,CAAC,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC;QACpE,IAAI,CAAC,QAAQ,GAAG,WAAW,CAAC;IAChC,CAAC;IAED,SAAS;QACL,IAAI,CAAC,IAAI,CAAC,cAAc,IAAI,CAAC,IAAI,CAAC,MAAM,IAAI,CAAC,IAAI,CAAC,cAAc,EAAE;YAC9D,OAAO,aAAa,IAAI,CAAC,MAAM,GAAG,CAAA;SACrC;QAED,IAAI,CAAC,IAAI,CAAC,MAAM,IAAI,CAAC,IAAI,CAAC,cAAc,EAAE;YACtC,IAAI,CAAC,cAAc,KAAK,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,GAAG,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC;YACrE,OAAO,aAAa,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,cAAc,GAAG,CAAA;SAC3D;QAED,IAAI,CAAC,cAAc,KAAK,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,GAAG,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC;QACrE,IAAI,CAAC,cAAc,KAAK,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,GAAG,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC;QAErE,OAAO,aAAa,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,cAAc,KAAK,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,cAAc,GAAG,CAAA;IAClG,CAAC;CACJ;AA/BD,gCA+BC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@designliquido/foles",
3
- "version": "0.6.3",
3
+ "version": "0.7.1",
4
4
  "description": "Linguagem de folhas de estilo para documentos em geral em português",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -17,4 +17,9 @@ export declare const MetodoSaturar: Array<string>;
17
17
  export declare const MetodoSepia: Array<string>;
18
18
  export declare const MetodoRotacionarMatiz: Array<string>;
19
19
  export declare const MetodoProjetarSombra: Array<string>;
20
+ export declare const MetodoPerspectivar: Array<string>;
21
+ export declare const MetodosRotacionar: Array<string>;
22
+ export declare const MetodosInclinar: Array<string>;
23
+ export declare const MetodosTranslacao: Array<string>;
24
+ export declare const MetodosEscalamento: Array<string>;
20
25
  export declare const TraducaoValoresMetodos: Object;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
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;
3
+ exports.TraducaoValoresMetodos = exports.MetodosEscalamento = exports.MetodosTranslacao = exports.MetodosInclinar = exports.MetodosRotacionar = exports.MetodoPerspectivar = 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',
@@ -96,6 +96,21 @@ exports.MetodoRotacionarMatiz = [
96
96
  exports.MetodoProjetarSombra = [
97
97
  'filtro-fundo',
98
98
  ];
99
+ exports.MetodoPerspectivar = [
100
+ 'transformar',
101
+ ];
102
+ exports.MetodosRotacionar = [
103
+ 'transformar',
104
+ ];
105
+ exports.MetodosInclinar = [
106
+ 'transformar',
107
+ ];
108
+ exports.MetodosTranslacao = [
109
+ 'transformar',
110
+ ];
111
+ exports.MetodosEscalamento = [
112
+ 'transformar',
113
+ ];
99
114
  exports.TraducaoValoresMetodos = {
100
115
  'altura-maxima': 'max-height',
101
116
  'altura-máxima': 'max-height',
@@ -135,6 +150,7 @@ exports.TraducaoValoresMetodos = {
135
150
  'tempo-transicao': 'transition-timing-function',
136
151
  'tempo-transição': 'transition-timing-function',
137
152
  'trajeto-deslocamento': 'offset-path',
153
+ 'transformar': 'transform',
138
154
  'transicao': 'transition',
139
155
  'transição': 'transition',
140
156
  'velocidade-animação': 'animation-timing-function',
@@ -1 +1 @@
1
- {"version":3,"file":"metodos.js","sourceRoot":"","sources":["../../../testes/listas/metodos.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"metodos.js","sourceRoot":"","sources":["../../../testes/listas/metodos.ts"],"names":[],"mappings":"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"}