@delon/theme 14.0.0-beta.0 → 14.0.0-beta.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/compact.css +1 -1
- package/compact.min.css +1 -1
- package/dark.css +1 -1
- package/dark.min.css +1 -1
- package/default.css +1 -1
- package/default.min.css +1 -1
- package/esm2020/src/services/http/http.token.mjs +7 -1
- package/esm2020/src/version.mjs +1 -1
- package/fesm2015/theme.mjs +8 -2
- package/fesm2015/theme.mjs.map +1 -1
- package/fesm2020/theme.mjs +8 -2
- package/fesm2020/theme.mjs.map +1 -1
- package/package.json +3 -3
- package/src/services/http/http.token.d.ts +6 -0
package/fesm2020/theme.mjs
CHANGED
|
@@ -2561,6 +2561,12 @@ const CUSTOM_ERROR = new HttpContextToken(() => false);
|
|
|
2561
2561
|
* this.http.get(`/path`, { context: new HttpContext().set(IGNORE_BASE_URL, true) }) // Request Url: /path
|
|
2562
2562
|
*/
|
|
2563
2563
|
const IGNORE_BASE_URL = new HttpContextToken(() => false);
|
|
2564
|
+
/**
|
|
2565
|
+
* Whether to return raw response body
|
|
2566
|
+
*
|
|
2567
|
+
* 是否原样返回请求Body
|
|
2568
|
+
*/
|
|
2569
|
+
const RAW_BODY = new HttpContextToken(() => false);
|
|
2564
2570
|
|
|
2565
2571
|
class DatePipe {
|
|
2566
2572
|
constructor(nzI18n) {
|
|
@@ -2739,11 +2745,11 @@ class PreloadOptionalModules {
|
|
|
2739
2745
|
}
|
|
2740
2746
|
}
|
|
2741
2747
|
|
|
2742
|
-
const VERSION = new Version('14.0.0-beta.
|
|
2748
|
+
const VERSION = new Version('14.0.0-beta.1');
|
|
2743
2749
|
|
|
2744
2750
|
/**
|
|
2745
2751
|
* Generated bundle index. Do not edit.
|
|
2746
2752
|
*/
|
|
2747
2753
|
|
|
2748
|
-
export { ALAIN_I18N_TOKEN, ALAIN_SETTING_KEYS, AlainI18NGuard, AlainI18NServiceFake, AlainI18nBaseService, AlainThemeModule, BaseApi, BaseHeaders, BaseUrl, Body, CUSTOM_ERROR, DELETE, DELON_LOCALE, DELON_LOCALE_SERVICE_PROVIDER, DELON_LOCALE_SERVICE_PROVIDER_FACTORY, DatePipe, DelonLocaleModule, DelonLocaleService, DrawerHelper, FORM, GET, HEAD, HTMLPipe, HTML_DIR, Headers, I18nPipe, IGNORE_BASE_URL, JSONP, KeysPipe, LTR, MenuService, ModalHelper, OPTIONS, PATCH, POST, PUT, Path, Payload, PreloadOptionalModules, Query, REP_MAX, RTL, RTLService, RTL_DELON_COMPONENTS, RTL_DIRECTION, RTL_NZ_COMPONENTS, ResponsiveService, SettingsService, TitleService, URLPipe, VERSION, YNPipe, _HttpClient, elGR as el_GR, enUS as en_US, esES as es_ES, frFR as fr_FR, hrHR as hr_HR, itIT as it_IT, jaJP as ja_JP, koKR as ko_KR, plPL as pl_PL, preloaderFinished, slSI as sl_SI, trTR as tr_TR, zhCN as zh_CN, zhTW as zh_TW };
|
|
2754
|
+
export { ALAIN_I18N_TOKEN, ALAIN_SETTING_KEYS, AlainI18NGuard, AlainI18NServiceFake, AlainI18nBaseService, AlainThemeModule, BaseApi, BaseHeaders, BaseUrl, Body, CUSTOM_ERROR, DELETE, DELON_LOCALE, DELON_LOCALE_SERVICE_PROVIDER, DELON_LOCALE_SERVICE_PROVIDER_FACTORY, DatePipe, DelonLocaleModule, DelonLocaleService, DrawerHelper, FORM, GET, HEAD, HTMLPipe, HTML_DIR, Headers, I18nPipe, IGNORE_BASE_URL, JSONP, KeysPipe, LTR, MenuService, ModalHelper, OPTIONS, PATCH, POST, PUT, Path, Payload, PreloadOptionalModules, Query, RAW_BODY, REP_MAX, RTL, RTLService, RTL_DELON_COMPONENTS, RTL_DIRECTION, RTL_NZ_COMPONENTS, ResponsiveService, SettingsService, TitleService, URLPipe, VERSION, YNPipe, _HttpClient, elGR as el_GR, enUS as en_US, esES as es_ES, frFR as fr_FR, hrHR as hr_HR, itIT as it_IT, jaJP as ja_JP, koKR as ko_KR, plPL as pl_PL, preloaderFinished, slSI as sl_SI, trTR as tr_TR, zhCN as zh_CN, zhTW as zh_TW };
|
|
2749
2755
|
//# sourceMappingURL=theme.mjs.map
|