taon 19.0.65 → 19.0.66
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/browser/fesm2022/taon.mjs +16 -13
- package/browser/fesm2022/taon.mjs.map +1 -1
- package/browser/lib/decorators/http/http-params-decorators.d.ts +3 -0
- package/browser/package.json +1 -1
- package/lib/base-classes/base-crud-controller.js +13 -13
- package/lib/base-classes/base-crud-controller.js.map +1 -1
- package/lib/build-info._auto-generated_.d.ts +1 -1
- package/lib/build-info._auto-generated_.js +1 -1
- package/lib/decorators/http/http-params-decorators.d.ts +3 -0
- package/lib/decorators/http/http-params-decorators.js +3 -0
- package/lib/decorators/http/http-params-decorators.js.map +1 -1
- package/lib/ui/index.js +2 -2
- package/lib/ui/taon-admin-mode-configuration/index.js +2 -2
- package/package.json +1 -1
- package/scss/global.scss +9 -12
- package/websql/fesm2022/taon.mjs +16 -13
- package/websql/fesm2022/taon.mjs.map +1 -1
- package/websql/lib/decorators/http/http-params-decorators.d.ts +3 -0
- package/websql/package.json +1 -1
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
|
+
/**
|
|
3
|
+
* @deprecated use Taon.Http.Param.Path (is more safe and cleaner)
|
|
4
|
+
*/
|
|
2
5
|
export declare function Path(name: string): (target: any, propertyKey: string | symbol, parameterIndex: number) => void;
|
|
3
6
|
export declare function Query(name?: string): (target: any, propertyKey: string | symbol, parameterIndex: number) => void;
|
|
4
7
|
export declare function Cookie(name: string, expireInSecond?: number): (target: any, propertyKey: string | symbol, parameterIndex: number) => void;
|