@trustme24/flext 1.9.0 → 1.9.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.
- package/dist/index.cjs +123 -123
- package/dist/index.css +1 -1
- package/dist/index.js +9 -9
- package/dist/modules/date/index.d.ts +1 -0
- package/dist/modules/match/index.d.ts +3 -3
- package/package.json +6 -6
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { DateTime } from 'luxon';
|
|
2
2
|
import { SafeString } from 'handlebars';
|
|
3
|
+
export declare const DEFAULT_COLOR_OP = "text";
|
|
3
4
|
export declare function op(state: any): DateTime | string | number | null;
|
|
4
5
|
export declare function opWithColor(state: any): SafeString;
|
|
5
6
|
export declare function now(state: any): DateTime;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export declare function
|
|
2
|
-
export declare function
|
|
3
|
-
export declare function
|
|
1
|
+
export declare function _match(state: any): any;
|
|
2
|
+
export declare function _case(state: any): any;
|
|
3
|
+
export declare function _fallback(state: any): any;
|
|
4
4
|
declare const _default: any;
|
|
5
5
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trustme24/flext",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.1",
|
|
4
4
|
"description": "A Powerful Templating Engine",
|
|
5
5
|
"keywords": ["templates", "templating engine", "modular templates", "handlebars"],
|
|
6
6
|
"type": "module",
|
|
@@ -36,14 +36,14 @@
|
|
|
36
36
|
"@babel/preset-env": "^7.28.5",
|
|
37
37
|
"@babel/preset-typescript": "^7.28.5",
|
|
38
38
|
"@handlebars/parser": "^2.2.2",
|
|
39
|
-
"@tailwindcss/cli": "^4.1.
|
|
40
|
-
"@types/node": "^
|
|
41
|
-
"esbuild": "^0.27.
|
|
39
|
+
"@tailwindcss/cli": "^4.1.18",
|
|
40
|
+
"@types/node": "^25.0.3",
|
|
41
|
+
"esbuild": "^0.27.2",
|
|
42
42
|
"esbuild-plugin-import-glob": "^0.1.1",
|
|
43
|
-
"tailwindcss": "^4.1.
|
|
43
|
+
"tailwindcss": "^4.1.18",
|
|
44
44
|
"tsc-alias": "^1.8.16",
|
|
45
45
|
"typescript": "^5.9.3",
|
|
46
|
-
"vitest": "^4.0.
|
|
46
|
+
"vitest": "^4.0.16"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"@unocss/preset-wind4": "^66.5.10",
|