@acorex/platform 20.3.0-next.8 → 20.3.0-next.9
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/common/index.d.ts +0 -2
- package/core/index.d.ts +72 -62
- package/fesm2022/acorex-platform-common.mjs +5 -10
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-core.mjs +115 -115
- package/fesm2022/acorex-platform-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-builder.mjs +420 -24
- package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-components.mjs +1266 -153
- package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-designer.mjs +19 -12
- package/fesm2022/acorex-platform-layout-designer.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +454 -505
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-views.mjs +14 -21
- package/fesm2022/acorex-platform-layout-views.mjs.map +1 -1
- package/fesm2022/{acorex-platform-themes-default-entity-master-create-view.component-BXbkGGei.mjs → acorex-platform-themes-default-entity-master-create-view.component-Ct-ri59W.mjs} +3 -3
- package/fesm2022/acorex-platform-themes-default-entity-master-create-view.component-Ct-ri59W.mjs.map +1 -0
- package/fesm2022/{acorex-platform-themes-default-entity-master-list-view.component-gQIK6PIx.mjs → acorex-platform-themes-default-entity-master-list-view.component-7BB4LdjK.mjs} +9 -9
- package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-7BB4LdjK.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-default-entity-master-modify-view.component-BDJR088o.mjs +101 -0
- package/fesm2022/acorex-platform-themes-default-entity-master-modify-view.component-BDJR088o.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-default.mjs +8 -8
- package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
- package/fesm2022/{acorex-platform-themes-shared-settings.provider-CXiRmniv.mjs → acorex-platform-themes-shared-settings.provider-CLUKU4y0.mjs} +2 -2
- package/fesm2022/acorex-platform-themes-shared-settings.provider-CLUKU4y0.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-shared.mjs +154 -23
- package/fesm2022/acorex-platform-themes-shared.mjs.map +1 -1
- package/fesm2022/{acorex-platform-widgets-file-list-popup.component-rW2RD35f.mjs → acorex-platform-widgets-file-list-popup.component-Cmtq2bBV.mjs} +3 -3
- package/fesm2022/acorex-platform-widgets-file-list-popup.component-Cmtq2bBV.mjs.map +1 -0
- package/fesm2022/{acorex-platform-widgets-page-widget-designer.component-DNvnQ4Mc.mjs → acorex-platform-widgets-page-widget-designer.component-D8ivmxzT.mjs} +2 -2
- package/fesm2022/acorex-platform-widgets-page-widget-designer.component-D8ivmxzT.mjs.map +1 -0
- package/fesm2022/{acorex-platform-widgets-tabular-data-edit-popup.component-CPVRbE8B.mjs → acorex-platform-widgets-tabular-data-edit-popup.component-CMqq_iOj.mjs} +8 -8
- package/fesm2022/acorex-platform-widgets-tabular-data-edit-popup.component-CMqq_iOj.mjs.map +1 -0
- package/fesm2022/acorex-platform-widgets.mjs +4943 -4858
- package/fesm2022/acorex-platform-widgets.mjs.map +1 -1
- package/layout/builder/index.d.ts +60 -5
- package/layout/components/index.d.ts +501 -54
- package/layout/designer/index.d.ts +4 -2
- package/layout/entity/index.d.ts +45 -9
- package/package.json +9 -9
- package/widgets/index.d.ts +352 -300
- package/fesm2022/acorex-platform-themes-default-entity-master-create-view.component-BXbkGGei.mjs.map +0 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-gQIK6PIx.mjs.map +0 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-modify-view.component-Bp1JLsj1.mjs +0 -101
- package/fesm2022/acorex-platform-themes-default-entity-master-modify-view.component-Bp1JLsj1.mjs.map +0 -1
- package/fesm2022/acorex-platform-themes-shared-settings.provider-CXiRmniv.mjs.map +0 -1
- package/fesm2022/acorex-platform-widgets-file-list-popup.component-rW2RD35f.mjs.map +0 -1
- package/fesm2022/acorex-platform-widgets-page-widget-designer.component-DNvnQ4Mc.mjs.map +0 -1
- package/fesm2022/acorex-platform-widgets-tabular-data-edit-popup.component-CPVRbE8B.mjs.map +0 -1
|
@@ -9,7 +9,7 @@ class AXPThemeSettingProvider {
|
|
|
9
9
|
this.translateService = this.injector.get(AXTranslationService);
|
|
10
10
|
}
|
|
11
11
|
async provide(context) {
|
|
12
|
-
const trans = async (key) => await this.translateService.translateAsync(
|
|
12
|
+
const trans = async (key) => await this.translateService.translateAsync(`@layout:settings.${key}`);
|
|
13
13
|
// Define the 'Appearance Settings' group
|
|
14
14
|
context.addGroup('appearance', await trans('appearance.title'), await trans('appearance.description'), 'fa-light fa-palette')
|
|
15
15
|
// Add the 'Brightness & Color' section
|
|
@@ -165,4 +165,4 @@ class AXPThemeSettingProvider {
|
|
|
165
165
|
}
|
|
166
166
|
|
|
167
167
|
export { AXPThemeSettingProvider };
|
|
168
|
-
//# sourceMappingURL=acorex-platform-themes-shared-settings.provider-
|
|
168
|
+
//# sourceMappingURL=acorex-platform-themes-shared-settings.provider-CLUKU4y0.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"acorex-platform-themes-shared-settings.provider-CLUKU4y0.mjs","sources":["../tmp-esm2022/themes/shared/lib/settings.provider.js"],"sourcesContent":["import { AXPThemeLayoutSetting } from './settings.keys';\nimport { AXPWidgetsCatalog } from '@acorex/platform/layout/builder';\nimport { AXPThemeMode } from './theme.types';\nimport { AXPPlatformScope, objectKeyValueTransforms } from '@acorex/platform/core';\nimport { AXTranslationService } from '@acorex/core/translation';\nexport class AXPThemeSettingProvider {\n constructor(injector) {\n this.injector = injector;\n this.translateService = this.injector.get(AXTranslationService);\n }\n async provide(context) {\n const trans = async (key) => await this.translateService.translateAsync(`@layout:settings.${key}`);\n // Define the 'Appearance Settings' group\n context.addGroup('appearance', await trans('appearance.title'), await trans('appearance.description'), 'fa-light fa-palette')\n // Add the 'Brightness & Color' section\n .addSection('color', await trans('appearance.color.title'), await trans('appearance.color.description'))\n // Add the 'Theme Mode' setting\n .addSetting({\n key: AXPThemeLayoutSetting.Mode,\n title: await trans('appearance.color.mode.title'),\n scope: AXPPlatformScope.User,\n isInherited: true,\n defaultValue: AXPThemeMode.Light,\n valueTransforms: objectKeyValueTransforms('id'),\n widget: {\n type: AXPWidgetsCatalog.themeModeChooser,\n layout: {\n positions: {\n default: {\n colSpan: 12,\n },\n md: {\n colSpan: 6,\n },\n },\n },\n },\n description: await trans('appearance.color.mode.description'),\n })\n .addSetting({\n key: AXPThemeLayoutSetting.Palette,\n title: await trans('appearance.color.palette.title'),\n scope: AXPPlatformScope.User,\n isInherited: true,\n defaultValue: 'default',\n valueTransforms: objectKeyValueTransforms('name'),\n widget: {\n type: AXPWidgetsCatalog.themePaletteChooser,\n layout: {\n positions: {\n default: {\n colSpan: 12,\n },\n xxl: {\n colSpan: 9,\n },\n },\n },\n },\n description: await trans('appearance.color.palette.description'),\n })\n // End the 'Brightness & Color' section\n .endSection()\n // Add the 'Root Menu' section\n .addSection('root-menu', await trans('appearance.root-menu.title'), await trans('appearance.root-menu.description'))\n // Add the 'Menu Orientation' setting\n .addSetting({\n key: AXPThemeLayoutSetting.MenuOrientation,\n title: await trans('appearance.root-menu.title'),\n scope: AXPPlatformScope.User,\n isInherited: true,\n defaultValue: 'vertical',\n valueTransforms: objectKeyValueTransforms('id'),\n widget: {\n type: AXPWidgetsCatalog.menuOrientationChooser,\n layout: {\n positions: {\n default: {\n colSpan: 12,\n },\n md: {\n colSpan: 6,\n },\n },\n },\n },\n description: await trans('appearance.root-menu.description'),\n })\n // Add the 'Menu Badge Visibility' setting\n .addSetting({\n key: AXPThemeLayoutSetting.MenuBadgeVisible,\n title: await trans('appearance.root-menu.badge.title'),\n scope: AXPPlatformScope.User,\n isInherited: true,\n defaultValue: true,\n widget: {\n type: AXPWidgetsCatalog.toggle,\n layout: {\n positions: {\n default: {\n colSpan: 12,\n },\n md: {\n colSpan: 6,\n },\n },\n },\n },\n description: await trans('appearance.root-menu.badge.description'),\n })\n .endSection()\n // Add the 'Scale & Layout' section\n .addSection('layout', await trans('appearance.layout.title'), await trans('appearance.layout.description'))\n // Add the 'Font Style' setting\n .addSetting({\n key: AXPThemeLayoutSetting.Font,\n title: await trans('appearance.layout.font.title'),\n scope: AXPPlatformScope.User,\n isInherited: true,\n defaultValue: 'system-ui',\n valueTransforms: objectKeyValueTransforms('id'),\n widget: {\n type: AXPWidgetsCatalog.fontStyleChooser,\n layout: {\n positions: {\n default: {\n colSpan: 12,\n },\n md: {\n colSpan: 6,\n },\n },\n },\n },\n description: await trans('appearance.layout.font.description'),\n })\n // Add the 'Font Size' setting\n .addSetting({\n key: AXPThemeLayoutSetting.FontSize,\n title: await trans('appearance.layout.size.title'),\n scope: AXPPlatformScope.User,\n isInherited: true,\n defaultValue: 'medium',\n valueTransforms: objectKeyValueTransforms('id'),\n widget: {\n type: AXPWidgetsCatalog.fontSizeChooser,\n layout: {\n positions: {\n default: {\n colSpan: 12,\n },\n md: {\n colSpan: 6,\n },\n },\n },\n },\n description: await trans('appearance.layout.size.description'),\n })\n // End the 'Scale & Layout' section\n .endSection()\n // End the 'Appearance Settings' group\n .endGroup();\n }\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2V0dGluZ3MucHJvdmlkZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3RoZW1lcy9zaGFyZWQvc3JjL2xpYi9zZXR0aW5ncy5wcm92aWRlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFDQSxPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUN4RCxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUNwRSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRTdDLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSx3QkFBd0IsRUFBRSxNQUFNLHVCQUF1QixDQUFDO0FBQ25GLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBRWhFLE1BQU0sT0FBTyx1QkFBdUI7SUFJbEMsWUFBb0IsUUFBa0I7UUFBbEIsYUFBUSxHQUFSLFFBQVEsQ0FBVTtRQUZyQixxQkFBZ0IsR0FBRyxJQUFJLENBQUMsUUFBUSxDQUFDLEdBQUcsQ0FBQyxvQkFBb0IsQ0FBQyxDQUFDO0lBSTVFLENBQUM7SUFFRCxLQUFLLENBQUMsT0FBTyxDQUFDLE9BQTRDO1FBRXhELE1BQU0sS0FBSyxHQUFHLEtBQUssRUFBRSxHQUFXLEVBQUUsRUFBRSxDQUFDLE1BQU0sSUFBSSxDQUFDLGdCQUFnQixDQUFDLGNBQWMsQ0FBQyxvQkFBb0IsR0FBRyxFQUFFLENBQUMsQ0FBQztRQUUzRyx5Q0FBeUM7UUFDekMsT0FBTyxDQUFDLFFBQVEsQ0FBQyxZQUFZLEVBQUUsTUFBTSxLQUFLLENBQUMsa0JBQWtCLENBQUMsRUFBRSxNQUFNLEtBQUssQ0FBQyx3QkFBd0IsQ0FBQyxFQUFFLHFCQUFxQixDQUFDO1lBRTNILHVDQUF1QzthQUN0QyxVQUFVLENBQUMsT0FBTyxFQUFFLE1BQU0sS0FBSyxDQUFDLHdCQUF3QixDQUFDLEVBQUUsTUFBTSxLQUFLLENBQUMsOEJBQThCLENBQUMsQ0FBQztZQUV4RywrQkFBK0I7YUFDOUIsVUFBVSxDQUFDO1lBQ1YsR0FBRyxFQUFFLHFCQUFxQixDQUFDLElBQUk7WUFDL0IsS0FBSyxFQUFFLE1BQU0sS0FBSyxDQUFDLDZCQUE2QixDQUFDO1lBQ2pELEtBQUssRUFBRSxnQkFBZ0IsQ0FBQyxJQUFJO1lBQzVCLFdBQVcsRUFBRSxJQUFJO1lBQ2pCLFlBQVksRUFBRSxZQUFZLENBQUMsS0FBSztZQUNoQyxlQUFlLEVBQUUsd0JBQXdCLENBQUMsSUFBSSxDQUFDO1lBQy9DLE1BQU0sRUFBRTtnQkFDTixJQUFJLEVBQUUsaUJBQWlCLENBQUMsZ0JBQWdCO2dCQUN4QyxNQUFNLEVBQUU7b0JBQ04sU0FBUyxFQUFFO3dCQUNULE9BQU8sRUFBRTs0QkFDUCxPQUFPLEVBQUUsRUFBRTt5QkFDWjt3QkFDRCxFQUFFLEVBQUU7NEJBQ0YsT0FBTyxFQUFFLENBQUM7eUJBQ1g7cUJBQ0Y7aUJBQ0Y7YUFDRjtZQUNELFdBQVcsRUFBRSxNQUFNLEtBQUssQ0FBQyxtQ0FBbUMsQ0FBQztTQUM5RCxDQUFDO2FBRUQsVUFBVSxDQUFDO1lBQ1YsR0FBRyxFQUFFLHFCQUFxQixDQUFDLE9BQU87WUFDbEMsS0FBSyxFQUFFLE1BQU0sS0FBSyxDQUFDLGdDQUFnQyxDQUFDO1lBQ3BELEtBQUssRUFBRSxnQkFBZ0IsQ0FBQyxJQUFJO1lBQzVCLFdBQVcsRUFBRSxJQUFJO1lBQ2pCLFlBQVksRUFBRSxTQUFTO1lBQ3ZCLGVBQWUsRUFBRSx3QkFBd0IsQ0FBQyxNQUFNLENBQUM7WUFDakQsTUFBTSxFQUFFO2dCQUNOLElBQUksRUFBRSxpQkFBaUIsQ0FBQyxtQkFBbUI7Z0JBQzNDLE1BQU0sRUFBRTtvQkFDTixTQUFTLEVBQUU7d0JBQ1QsT0FBTyxFQUFFOzRCQUNQLE9BQU8sRUFBRSxFQUFFO3lCQUNaO3dCQUNELEdBQUcsRUFBRTs0QkFDSCxPQUFPLEVBQUUsQ0FBQzt5QkFDWDtxQkFDRjtpQkFDRjthQUNGO1lBQ0QsV0FBVyxFQUFFLE1BQU0sS0FBSyxDQUFDLHNDQUFzQyxDQUFDO1NBQ2pFLENBQUM7WUFFRix1Q0FBdUM7YUFDdEMsVUFBVSxFQUFFO1lBRWIsOEJBQThCO2FBQzdCLFVBQVUsQ0FBQyxXQUFXLEVBQUUsTUFBTSxLQUFLLENBQUMsNEJBQTRCLENBQUMsRUFBRSxNQUFNLEtBQUssQ0FBQyxrQ0FBa0MsQ0FBQyxDQUFDO1lBRXBILHFDQUFxQzthQUNwQyxVQUFVLENBQUM7WUFDVixHQUFHLEVBQUUscUJBQXFCLENBQUMsZUFBZTtZQUMxQyxLQUFLLEVBQUUsTUFBTSxLQUFLLENBQUMsNEJBQTRCLENBQUM7WUFDaEQsS0FBSyxFQUFFLGdCQUFnQixDQUFDLElBQUk7WUFDNUIsV0FBVyxFQUFFLElBQUk7WUFDakIsWUFBWSxFQUFFLFVBQVU7WUFDeEIsZUFBZSxFQUFFLHdCQUF3QixDQUFDLElBQUksQ0FBQztZQUMvQyxNQUFNLEVBQUU7Z0JBQ04sSUFBSSxFQUFFLGlCQUFpQixDQUFDLHNCQUFzQjtnQkFDOUMsTUFBTSxFQUFFO29CQUNOLFNBQVMsRUFBRTt3QkFDVCxPQUFPLEVBQUU7NEJBQ1AsT0FBTyxFQUFFLEVBQUU7eUJBQ1o7d0JBQ0QsRUFBRSxFQUFFOzRCQUNGLE9BQU8sRUFBRSxDQUFDO3lCQUNYO3FCQUNGO2lCQUNGO2FBQ0Y7WUFDRCxXQUFXLEVBQUUsTUFBTSxLQUFLLENBQUMsa0NBQWtDLENBQUM7U0FDN0QsQ0FBQztZQUVGLDBDQUEwQzthQUN6QyxVQUFVLENBQUM7WUFDVixHQUFHLEVBQUUscUJBQXFCLENBQUMsZ0JBQWdCO1lBQzNDLEtBQUssRUFBRSxNQUFNLEtBQUssQ0FBQyxrQ0FBa0MsQ0FBQztZQUN0RCxLQUFLLEVBQUUsZ0JBQWdCLENBQUMsSUFBSTtZQUM1QixXQUFXLEVBQUUsSUFBSTtZQUNqQixZQUFZLEVBQUUsSUFBSTtZQUNsQixNQUFNLEVBQUU7Z0JBQ04sSUFBSSxFQUFFLGlCQUFpQixDQUFDLE1BQU07Z0JBQzlCLE1BQU0sRUFBRTtvQkFDTixTQUFTLEVBQUU7d0JBQ1QsT0FBTyxFQUFFOzRCQUNQLE9BQU8sRUFBRSxFQUFFO3lCQUNaO3dCQUNELEVBQUUsRUFBRTs0QkFDRixPQUFPLEVBQUUsQ0FBQzt5QkFDWDtxQkFDRjtpQkFDRjthQUNGO1lBQ0QsV0FBVyxFQUFFLE1BQU0sS0FBSyxDQUFDLHdDQUF3QyxDQUFDO1NBQ25FLENBQUM7YUFDRCxVQUFVLEVBQUU7WUFFYixtQ0FBbUM7YUFDbEMsVUFBVSxDQUFDLFFBQVEsRUFBRSxNQUFNLEtBQUssQ0FBQyx5QkFBeUIsQ0FBQyxFQUFFLE1BQU0sS0FBSyxDQUFDLCtCQUErQixDQUFDLENBQUM7WUFFM0csK0JBQStCO2FBQzlCLFVBQVUsQ0FBQztZQUNWLEdBQUcsRUFBRSxxQkFBcUIsQ0FBQyxJQUFJO1lBQy9CLEtBQUssRUFBRSxNQUFNLEtBQUssQ0FBQyw4QkFBOEIsQ0FBQztZQUNsRCxLQUFLLEVBQUUsZ0JBQWdCLENBQUMsSUFBSTtZQUM1QixXQUFXLEVBQUUsSUFBSTtZQUNqQixZQUFZLEVBQUUsV0FBVztZQUN6QixlQUFlLEVBQUUsd0JBQXdCLENBQUMsSUFBSSxDQUFDO1lBQy9DLE1BQU0sRUFBRTtnQkFDTixJQUFJLEVBQUUsaUJBQWlCLENBQUMsZ0JBQWdCO2dCQUN4QyxNQUFNLEVBQUU7b0JBQ04sU0FBUyxFQUFFO3dCQUNULE9BQU8sRUFBRTs0QkFDUCxPQUFPLEVBQUUsRUFBRTt5QkFDWjt3QkFDRCxFQUFFLEVBQUU7NEJBQ0YsT0FBTyxFQUFFLENBQUM7eUJBQ1g7cUJBQ0Y7aUJBQ0Y7YUFDRjtZQUNELFdBQVcsRUFBRSxNQUFNLEtBQUssQ0FBQyxvQ0FBb0MsQ0FBQztTQUMvRCxDQUFDO1lBRUYsOEJBQThCO2FBQzdCLFVBQVUsQ0FBQztZQUNWLEdBQUcsRUFBRSxxQkFBcUIsQ0FBQyxRQUFRO1lBQ25DLEtBQUssRUFBRSxNQUFNLEtBQUssQ0FBQyw4QkFBOEIsQ0FBQztZQUNsRCxLQUFLLEVBQUUsZ0JBQWdCLENBQUMsSUFBSTtZQUM1QixXQUFXLEVBQUUsSUFBSTtZQUNqQixZQUFZLEVBQUUsUUFBUTtZQUN0QixlQUFlLEVBQUUsd0JBQXdCLENBQUMsSUFBSSxDQUFDO1lBQy9DLE1BQU0sRUFBRTtnQkFDTixJQUFJLEVBQUUsaUJBQWlCLENBQUMsZUFBZTtnQkFDdkMsTUFBTSxFQUFFO29CQUNOLFNBQVMsRUFBRTt3QkFDVCxPQUFPLEVBQUU7NEJBQ1AsT0FBTyxFQUFFLEVBQUU7eUJBQ1o7d0JBQ0QsRUFBRSxFQUFFOzRCQUNGLE9BQU8sRUFBRSxDQUFDO3lCQUNYO3FCQUNGO2lCQUNGO2FBQ0Y7WUFDRCxXQUFXLEVBQUUsTUFBTSxLQUFLLENBQUMsb0NBQW9DLENBQUM7U0FDL0QsQ0FBQztZQUVGLG1DQUFtQzthQUNsQyxVQUFVLEVBQUU7WUFFYixzQ0FBc0M7YUFDckMsUUFBUSxFQUFFLENBQUM7SUFHaEIsQ0FBQztDQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVhQU2V0dGluZ0RlZmluaXRpb25Qcm92aWRlciwgQVhQU2V0dGluZ0RlZmluaXRpb25Qcm92aWRlckNvbnRleHQgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2NvbW1vbic7XG5pbXBvcnQgeyBBWFBUaGVtZUxheW91dFNldHRpbmcgfSBmcm9tICcuL3NldHRpbmdzLmtleXMnO1xuaW1wb3J0IHsgQVhQV2lkZ2V0c0NhdGFsb2cgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2xheW91dC9idWlsZGVyJztcbmltcG9ydCB7IEFYUFRoZW1lTW9kZSB9IGZyb20gJy4vdGhlbWUudHlwZXMnO1xuaW1wb3J0IHsgSW5qZWN0b3IgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEFYUFBsYXRmb3JtU2NvcGUsIG9iamVjdEtleVZhbHVlVHJhbnNmb3JtcyB9IGZyb20gJ0BhY29yZXgvcGxhdGZvcm0vY29yZSc7XG5pbXBvcnQgeyBBWFRyYW5zbGF0aW9uU2VydmljZSB9IGZyb20gJ0BhY29yZXgvY29yZS90cmFuc2xhdGlvbic7XG5cbmV4cG9ydCBjbGFzcyBBWFBUaGVtZVNldHRpbmdQcm92aWRlciBpbXBsZW1lbnRzIEFYUFNldHRpbmdEZWZpbml0aW9uUHJvdmlkZXIge1xuXG4gIHByaXZhdGUgcmVhZG9ubHkgdHJhbnNsYXRlU2VydmljZSA9IHRoaXMuaW5qZWN0b3IuZ2V0KEFYVHJhbnNsYXRpb25TZXJ2aWNlKTtcblxuICBjb25zdHJ1Y3Rvcihwcml2YXRlIGluamVjdG9yOiBJbmplY3Rvcikge1xuXG4gIH1cblxuICBhc3luYyBwcm92aWRlKGNvbnRleHQ6IEFYUFNldHRpbmdEZWZpbml0aW9uUHJvdmlkZXJDb250ZXh0KTogUHJvbWlzZTx2b2lkPiB7XG5cbiAgICBjb25zdCB0cmFucyA9IGFzeW5jIChrZXk6IHN0cmluZykgPT4gYXdhaXQgdGhpcy50cmFuc2xhdGVTZXJ2aWNlLnRyYW5zbGF0ZUFzeW5jKGBAbGF5b3V0OnNldHRpbmdzLiR7a2V5fWApO1xuXG4gICAgLy8gRGVmaW5lIHRoZSAnQXBwZWFyYW5jZSBTZXR0aW5ncycgZ3JvdXBcbiAgICBjb250ZXh0LmFkZEdyb3VwKCdhcHBlYXJhbmNlJywgYXdhaXQgdHJhbnMoJ2FwcGVhcmFuY2UudGl0bGUnKSwgYXdhaXQgdHJhbnMoJ2FwcGVhcmFuY2UuZGVzY3JpcHRpb24nKSwgJ2ZhLWxpZ2h0IGZhLXBhbGV0dGUnKVxuXG4gICAgICAvLyBBZGQgdGhlICdCcmlnaHRuZXNzICYgQ29sb3InIHNlY3Rpb25cbiAgICAgIC5hZGRTZWN0aW9uKCdjb2xvcicsIGF3YWl0IHRyYW5zKCdhcHBlYXJhbmNlLmNvbG9yLnRpdGxlJyksIGF3YWl0IHRyYW5zKCdhcHBlYXJhbmNlLmNvbG9yLmRlc2NyaXB0aW9uJykpXG5cbiAgICAgIC8vIEFkZCB0aGUgJ1RoZW1lIE1vZGUnIHNldHRpbmdcbiAgICAgIC5hZGRTZXR0aW5nKHtcbiAgICAgICAga2V5OiBBWFBUaGVtZUxheW91dFNldHRpbmcuTW9kZSxcbiAgICAgICAgdGl0bGU6IGF3YWl0IHRyYW5zKCdhcHBlYXJhbmNlLmNvbG9yLm1vZGUudGl0bGUnKSxcbiAgICAgICAgc2NvcGU6IEFYUFBsYXRmb3JtU2NvcGUuVXNlcixcbiAgICAgICAgaXNJbmhlcml0ZWQ6IHRydWUsXG4gICAgICAgIGRlZmF1bHRWYWx1ZTogQVhQVGhlbWVNb2RlLkxpZ2h0LFxuICAgICAgICB2YWx1ZVRyYW5zZm9ybXM6IG9iamVjdEtleVZhbHVlVHJhbnNmb3JtcygnaWQnKSxcbiAgICAgICAgd2lkZ2V0OiB7XG4gICAgICAgICAgdHlwZTogQVhQV2lkZ2V0c0NhdGFsb2cudGhlbWVNb2RlQ2hvb3NlcixcbiAgICAgICAgICBsYXlvdXQ6IHtcbiAgICAgICAgICAgIHBvc2l0aW9uczoge1xuICAgICAgICAgICAgICBkZWZhdWx0OiB7XG4gICAgICAgICAgICAgICAgY29sU3BhbjogMTIsXG4gICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgIG1kOiB7XG4gICAgICAgICAgICAgICAgY29sU3BhbjogNixcbiAgICAgICAgICAgICAgfSxcbiAgICAgICAgICAgIH0sXG4gICAgICAgICAgfSxcbiAgICAgICAgfSxcbiAgICAgICAgZGVzY3JpcHRpb246IGF3YWl0IHRyYW5zKCdhcHBlYXJhbmNlLmNvbG9yLm1vZGUuZGVzY3JpcHRpb24nKSxcbiAgICAgIH0pXG5cbiAgICAgIC5hZGRTZXR0aW5nKHtcbiAgICAgICAga2V5OiBBWFBUaGVtZUxheW91dFNldHRpbmcuUGFsZXR0ZSxcbiAgICAgICAgdGl0bGU6IGF3YWl0IHRyYW5zKCdhcHBlYXJhbmNlLmNvbG9yLnBhbGV0dGUudGl0bGUnKSxcbiAgICAgICAgc2NvcGU6IEFYUFBsYXRmb3JtU2NvcGUuVXNlcixcbiAgICAgICAgaXNJbmhlcml0ZWQ6IHRydWUsXG4gICAgICAgIGRlZmF1bHRWYWx1ZTogJ2RlZmF1bHQnLFxuICAgICAgICB2YWx1ZVRyYW5zZm9ybXM6IG9iamVjdEtleVZhbHVlVHJhbnNmb3JtcygnbmFtZScpLFxuICAgICAgICB3aWRnZXQ6IHtcbiAgICAgICAgICB0eXBlOiBBWFBXaWRnZXRzQ2F0YWxvZy50aGVtZVBhbGV0dGVDaG9vc2VyLFxuICAgICAgICAgIGxheW91dDoge1xuICAgICAgICAgICAgcG9zaXRpb25zOiB7XG4gICAgICAgICAgICAgIGRlZmF1bHQ6IHtcbiAgICAgICAgICAgICAgICBjb2xTcGFuOiAxMixcbiAgICAgICAgICAgICAgfSxcbiAgICAgICAgICAgICAgeHhsOiB7XG4gICAgICAgICAgICAgICAgY29sU3BhbjogOSxcbiAgICAgICAgICAgICAgfSxcbiAgICAgICAgICAgIH0sXG4gICAgICAgICAgfSxcbiAgICAgICAgfSxcbiAgICAgICAgZGVzY3JpcHRpb246IGF3YWl0IHRyYW5zKCdhcHBlYXJhbmNlLmNvbG9yLnBhbGV0dGUuZGVzY3JpcHRpb24nKSxcbiAgICAgIH0pXG5cbiAgICAgIC8vIEVuZCB0aGUgJ0JyaWdodG5lc3MgJiBDb2xvcicgc2VjdGlvblxuICAgICAgLmVuZFNlY3Rpb24oKVxuXG4gICAgICAvLyBBZGQgdGhlICdSb290IE1lbnUnIHNlY3Rpb25cbiAgICAgIC5hZGRTZWN0aW9uKCdyb290LW1lbnUnLCBhd2FpdCB0cmFucygnYXBwZWFyYW5jZS5yb290LW1lbnUudGl0bGUnKSwgYXdhaXQgdHJhbnMoJ2FwcGVhcmFuY2Uucm9vdC1tZW51LmRlc2NyaXB0aW9uJykpXG5cbiAgICAgIC8vIEFkZCB0aGUgJ01lbnUgT3JpZW50YXRpb24nIHNldHRpbmdcbiAgICAgIC5hZGRTZXR0aW5nKHtcbiAgICAgICAga2V5OiBBWFBUaGVtZUxheW91dFNldHRpbmcuTWVudU9yaWVudGF0aW9uLFxuICAgICAgICB0aXRsZTogYXdhaXQgdHJhbnMoJ2FwcGVhcmFuY2Uucm9vdC1tZW51LnRpdGxlJyksXG4gICAgICAgIHNjb3BlOiBBWFBQbGF0Zm9ybVNjb3BlLlVzZXIsXG4gICAgICAgIGlzSW5oZXJpdGVkOiB0cnVlLFxuICAgICAgICBkZWZhdWx0VmFsdWU6ICd2ZXJ0aWNhbCcsXG4gICAgICAgIHZhbHVlVHJhbnNmb3Jtczogb2JqZWN0S2V5VmFsdWVUcmFuc2Zvcm1zKCdpZCcpLFxuICAgICAgICB3aWRnZXQ6IHtcbiAgICAgICAgICB0eXBlOiBBWFBXaWRnZXRzQ2F0YWxvZy5tZW51T3JpZW50YXRpb25DaG9vc2VyLFxuICAgICAgICAgIGxheW91dDoge1xuICAgICAgICAgICAgcG9zaXRpb25zOiB7XG4gICAgICAgICAgICAgIGRlZmF1bHQ6IHtcbiAgICAgICAgICAgICAgICBjb2xTcGFuOiAxMixcbiAgICAgICAgICAgICAgfSxcbiAgICAgICAgICAgICAgbWQ6IHtcbiAgICAgICAgICAgICAgICBjb2xTcGFuOiA2LFxuICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgfSxcbiAgICAgICAgICB9LFxuICAgICAgICB9LFxuICAgICAgICBkZXNjcmlwdGlvbjogYXdhaXQgdHJhbnMoJ2FwcGVhcmFuY2Uucm9vdC1tZW51LmRlc2NyaXB0aW9uJyksXG4gICAgICB9KVxuXG4gICAgICAvLyBBZGQgdGhlICdNZW51IEJhZGdlIFZpc2liaWxpdHknIHNldHRpbmdcbiAgICAgIC5hZGRTZXR0aW5nKHtcbiAgICAgICAga2V5OiBBWFBUaGVtZUxheW91dFNldHRpbmcuTWVudUJhZGdlVmlzaWJsZSxcbiAgICAgICAgdGl0bGU6IGF3YWl0IHRyYW5zKCdhcHBlYXJhbmNlLnJvb3QtbWVudS5iYWRnZS50aXRsZScpLFxuICAgICAgICBzY29wZTogQVhQUGxhdGZvcm1TY29wZS5Vc2VyLFxuICAgICAgICBpc0luaGVyaXRlZDogdHJ1ZSxcbiAgICAgICAgZGVmYXVsdFZhbHVlOiB0cnVlLFxuICAgICAgICB3aWRnZXQ6IHtcbiAgICAgICAgICB0eXBlOiBBWFBXaWRnZXRzQ2F0YWxvZy50b2dnbGUsXG4gICAgICAgICAgbGF5b3V0OiB7XG4gICAgICAgICAgICBwb3NpdGlvbnM6IHtcbiAgICAgICAgICAgICAgZGVmYXVsdDoge1xuICAgICAgICAgICAgICAgIGNvbFNwYW46IDEyLFxuICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgICBtZDoge1xuICAgICAgICAgICAgICAgIGNvbFNwYW46IDYsXG4gICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICB9LFxuICAgICAgICAgIH0sXG4gICAgICAgIH0sXG4gICAgICAgIGRlc2NyaXB0aW9uOiBhd2FpdCB0cmFucygnYXBwZWFyYW5jZS5yb290LW1lbnUuYmFkZ2UuZGVzY3JpcHRpb24nKSxcbiAgICAgIH0pXG4gICAgICAuZW5kU2VjdGlvbigpXG5cbiAgICAgIC8vIEFkZCB0aGUgJ1NjYWxlICYgTGF5b3V0JyBzZWN0aW9uXG4gICAgICAuYWRkU2VjdGlvbignbGF5b3V0JywgYXdhaXQgdHJhbnMoJ2FwcGVhcmFuY2UubGF5b3V0LnRpdGxlJyksIGF3YWl0IHRyYW5zKCdhcHBlYXJhbmNlLmxheW91dC5kZXNjcmlwdGlvbicpKVxuXG4gICAgICAvLyBBZGQgdGhlICdGb250IFN0eWxlJyBzZXR0aW5nXG4gICAgICAuYWRkU2V0dGluZyh7XG4gICAgICAgIGtleTogQVhQVGhlbWVMYXlvdXRTZXR0aW5nLkZvbnQsXG4gICAgICAgIHRpdGxlOiBhd2FpdCB0cmFucygnYXBwZWFyYW5jZS5sYXlvdXQuZm9udC50aXRsZScpLFxuICAgICAgICBzY29wZTogQVhQUGxhdGZvcm1TY29wZS5Vc2VyLFxuICAgICAgICBpc0luaGVyaXRlZDogdHJ1ZSxcbiAgICAgICAgZGVmYXVsdFZhbHVlOiAnc3lzdGVtLXVpJyxcbiAgICAgICAgdmFsdWVUcmFuc2Zvcm1zOiBvYmplY3RLZXlWYWx1ZVRyYW5zZm9ybXMoJ2lkJyksXG4gICAgICAgIHdpZGdldDoge1xuICAgICAgICAgIHR5cGU6IEFYUFdpZGdldHNDYXRhbG9nLmZvbnRTdHlsZUNob29zZXIsXG4gICAgICAgICAgbGF5b3V0OiB7XG4gICAgICAgICAgICBwb3NpdGlvbnM6IHtcbiAgICAgICAgICAgICAgZGVmYXVsdDoge1xuICAgICAgICAgICAgICAgIGNvbFNwYW46IDEyLFxuICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgICBtZDoge1xuICAgICAgICAgICAgICAgIGNvbFNwYW46IDYsXG4gICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICB9LFxuICAgICAgICAgIH0sXG4gICAgICAgIH0sXG4gICAgICAgIGRlc2NyaXB0aW9uOiBhd2FpdCB0cmFucygnYXBwZWFyYW5jZS5sYXlvdXQuZm9udC5kZXNjcmlwdGlvbicpLFxuICAgICAgfSlcblxuICAgICAgLy8gQWRkIHRoZSAnRm9udCBTaXplJyBzZXR0aW5nXG4gICAgICAuYWRkU2V0dGluZyh7XG4gICAgICAgIGtleTogQVhQVGhlbWVMYXlvdXRTZXR0aW5nLkZvbnRTaXplLFxuICAgICAgICB0aXRsZTogYXdhaXQgdHJhbnMoJ2FwcGVhcmFuY2UubGF5b3V0LnNpemUudGl0bGUnKSxcbiAgICAgICAgc2NvcGU6IEFYUFBsYXRmb3JtU2NvcGUuVXNlcixcbiAgICAgICAgaXNJbmhlcml0ZWQ6IHRydWUsXG4gICAgICAgIGRlZmF1bHRWYWx1ZTogJ21lZGl1bScsXG4gICAgICAgIHZhbHVlVHJhbnNmb3Jtczogb2JqZWN0S2V5VmFsdWVUcmFuc2Zvcm1zKCdpZCcpLFxuICAgICAgICB3aWRnZXQ6IHtcbiAgICAgICAgICB0eXBlOiBBWFBXaWRnZXRzQ2F0YWxvZy5mb250U2l6ZUNob29zZXIsXG4gICAgICAgICAgbGF5b3V0OiB7XG4gICAgICAgICAgICBwb3NpdGlvbnM6IHtcbiAgICAgICAgICAgICAgZGVmYXVsdDoge1xuICAgICAgICAgICAgICAgIGNvbFNwYW46IDEyLFxuICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgICBtZDoge1xuICAgICAgICAgICAgICAgIGNvbFNwYW46IDYsXG4gICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICB9LFxuICAgICAgICAgIH0sXG4gICAgICAgIH0sXG4gICAgICAgIGRlc2NyaXB0aW9uOiBhd2FpdCB0cmFucygnYXBwZWFyYW5jZS5sYXlvdXQuc2l6ZS5kZXNjcmlwdGlvbicpLFxuICAgICAgfSlcblxuICAgICAgLy8gRW5kIHRoZSAnU2NhbGUgJiBMYXlvdXQnIHNlY3Rpb25cbiAgICAgIC5lbmRTZWN0aW9uKClcblxuICAgICAgLy8gRW5kIHRoZSAnQXBwZWFyYW5jZSBTZXR0aW5ncycgZ3JvdXBcbiAgICAgIC5lbmRHcm91cCgpO1xuXG5cbiAgfVxufVxuIl19"],"names":[],"mappings":"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"}
|
|
@@ -441,7 +441,7 @@ class AXPThemeSlotComponent {
|
|
|
441
441
|
<ax-button-item-list>
|
|
442
442
|
<ax-button-item
|
|
443
443
|
(onClick)="store.changeThemeMode(variants.Light)"
|
|
444
|
-
[text]="(
|
|
444
|
+
[text]="('@layout:theme-modes.light' | translate | async)!"
|
|
445
445
|
[selected]="!store.isSystemMode() && !store.isDarkMode()"
|
|
446
446
|
>
|
|
447
447
|
<ax-prefix>
|
|
@@ -450,7 +450,7 @@ class AXPThemeSlotComponent {
|
|
|
450
450
|
</ax-button-item>
|
|
451
451
|
<ax-button-item
|
|
452
452
|
(onClick)="store.changeThemeMode(variants.Dark)"
|
|
453
|
-
[text]="(
|
|
453
|
+
[text]="('@layout:theme-modes.dark' | translate | async)!"
|
|
454
454
|
[selected]="!store.isSystemMode() && store.isDarkMode()"
|
|
455
455
|
>
|
|
456
456
|
<ax-prefix>
|
|
@@ -459,7 +459,7 @@ class AXPThemeSlotComponent {
|
|
|
459
459
|
</ax-button-item>
|
|
460
460
|
<ax-button-item
|
|
461
461
|
(onClick)="store.changeThemeMode(variants.System)"
|
|
462
|
-
[text]="(
|
|
462
|
+
[text]="('@layout:theme-modes.system' | translate | async)!"
|
|
463
463
|
[selected]="store.isSystemMode()"
|
|
464
464
|
>
|
|
465
465
|
<ax-prefix>
|
|
@@ -469,7 +469,7 @@ class AXPThemeSlotComponent {
|
|
|
469
469
|
</ax-button-item-list>
|
|
470
470
|
</ax-dropdown-panel>
|
|
471
471
|
</ax-button>
|
|
472
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i2.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "iconOnly", "type", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "loadingTextChange"] }, { kind: "component", type: i2.AXButtonItemComponent, selector: "ax-button-item", inputs: ["color", "disabled", "text", "selected", "divided", "data", "name"], outputs: ["onClick", "onFocus", "onBlur", "disabledChange"] }, { kind: "component", type: i2.AXButtonItemListComponent, selector: "ax-button-item-list", inputs: ["items"], outputs: ["onItemClick"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-subtitle, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXDropdownModule }, { kind: "component", type: i4.AXDropdownPanelComponent, selector: "ax-dropdown-panel", inputs: ["isOpen", "fitParent", "dropdownWidth", "position", "placement", "_target", "adaptivityEnabled"], outputs: ["onOpened", "onClosed"] }, { kind: "ngmodule", type: AXTranslationModule }, { kind: "directive", type: i2$1.AXTranslatorDirective, selector: "[translate]" }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }] }); }
|
|
472
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i2.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "iconOnly", "type", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "loadingTextChange"] }, { kind: "component", type: i2.AXButtonItemComponent, selector: "ax-button-item", inputs: ["color", "disabled", "text", "selected", "divided", "data", "name"], outputs: ["onClick", "onFocus", "onBlur", "disabledChange"] }, { kind: "component", type: i2.AXButtonItemListComponent, selector: "ax-button-item-list", inputs: ["items"], outputs: ["onItemClick"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-subtitle, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXDropdownModule }, { kind: "component", type: i4.AXDropdownPanelComponent, selector: "ax-dropdown-panel", inputs: ["isOpen", "fitParent", "dropdownWidth", "position", "placement", "_target", "adaptivityEnabled"], outputs: ["onOpened", "onClosed"] }, { kind: "ngmodule", type: AXTranslationModule }, { kind: "directive", type: i2$1.AXTranslatorDirective, selector: "[translate]" }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }, { kind: "pipe", type: i2$1.AXTranslatorPipe, name: "translate" }] }); }
|
|
473
473
|
}
|
|
474
474
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.8", ngImport: i0, type: AXPThemeSlotComponent, decorators: [{
|
|
475
475
|
type: Component,
|
|
@@ -489,7 +489,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.8", ngImpor
|
|
|
489
489
|
<ax-button-item-list>
|
|
490
490
|
<ax-button-item
|
|
491
491
|
(onClick)="store.changeThemeMode(variants.Light)"
|
|
492
|
-
[text]="(
|
|
492
|
+
[text]="('@layout:theme-modes.light' | translate | async)!"
|
|
493
493
|
[selected]="!store.isSystemMode() && !store.isDarkMode()"
|
|
494
494
|
>
|
|
495
495
|
<ax-prefix>
|
|
@@ -498,7 +498,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.8", ngImpor
|
|
|
498
498
|
</ax-button-item>
|
|
499
499
|
<ax-button-item
|
|
500
500
|
(onClick)="store.changeThemeMode(variants.Dark)"
|
|
501
|
-
[text]="(
|
|
501
|
+
[text]="('@layout:theme-modes.dark' | translate | async)!"
|
|
502
502
|
[selected]="!store.isSystemMode() && store.isDarkMode()"
|
|
503
503
|
>
|
|
504
504
|
<ax-prefix>
|
|
@@ -507,7 +507,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.8", ngImpor
|
|
|
507
507
|
</ax-button-item>
|
|
508
508
|
<ax-button-item
|
|
509
509
|
(onClick)="store.changeThemeMode(variants.System)"
|
|
510
|
-
[text]="(
|
|
510
|
+
[text]="('@layout:theme-modes.system' | translate | async)!"
|
|
511
511
|
[selected]="store.isSystemMode()"
|
|
512
512
|
>
|
|
513
513
|
<ax-prefix>
|
|
@@ -685,7 +685,6 @@ class AXPColorChooserWidgetEditComponent extends AXPValueWidgetComponent {
|
|
|
685
685
|
}
|
|
686
686
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.8", ngImport: i0, type: AXPColorChooserWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
687
687
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.8", type: AXPColorChooserWidgetEditComponent, isStandalone: true, selector: "ax-color-chooser-widget", usesInheritance: true, ngImport: i0, template: `
|
|
688
|
-
<div class="ax-p-4">
|
|
689
688
|
<ax-form [messageStyle]="'float'" [updateOn]="'change'">
|
|
690
689
|
<ax-form-field>
|
|
691
690
|
<ax-select-box
|
|
@@ -714,7 +713,6 @@ class AXPColorChooserWidgetEditComponent extends AXPValueWidgetComponent {
|
|
|
714
713
|
</ax-select-box>
|
|
715
714
|
</ax-form-field>
|
|
716
715
|
</ax-form>
|
|
717
|
-
</div>
|
|
718
716
|
`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXSelectBoxModule }, { kind: "component", type: i1$1.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "disabledField", "textTemplate", "selectedItems", "isItemTruncated", "showItemTooltip", "dataSource", "minRecordsForSearch", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth", "searchBoxAutoFocus"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed", "onItemSelected", "onItemClick"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "component", type: i2$2.AXFormFieldComponent, selector: "ax-form-field", inputs: ["labelMode"] }, { kind: "component", type: i2$2.AXFormComponent, selector: "ax-form", inputs: ["labelMode", "look", "messageStyle", "updateOn"], outputs: ["onValidate", "updateOnChange"] }, { kind: "directive", type: i2$2.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message", "disabled"] }, { kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: AXSearchBoxModule }, { kind: "component", type: i4$1.AXSearchBoxComponent, selector: "ax-search-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "value", "state", "name", "id", "look", "class", "delayTime", "type"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i5.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i5.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
719
717
|
}
|
|
720
718
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.8", ngImport: i0, type: AXPColorChooserWidgetEditComponent, decorators: [{
|
|
@@ -722,7 +720,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.8", ngImpor
|
|
|
722
720
|
args: [{
|
|
723
721
|
selector: 'ax-color-chooser-widget',
|
|
724
722
|
template: `
|
|
725
|
-
<div class="ax-p-4">
|
|
726
723
|
<ax-form [messageStyle]="'float'" [updateOn]="'change'">
|
|
727
724
|
<ax-form-field>
|
|
728
725
|
<ax-select-box
|
|
@@ -751,7 +748,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.8", ngImpor
|
|
|
751
748
|
</ax-select-box>
|
|
752
749
|
</ax-form-field>
|
|
753
750
|
</ax-form>
|
|
754
|
-
</div>
|
|
755
751
|
`,
|
|
756
752
|
imports: [AXSelectBoxModule, AXFormModule, CommonModule, AXSearchBoxModule, AXButtonModule, FormsModule],
|
|
757
753
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
@@ -803,7 +799,7 @@ class AXPFontSizeChooserWidgetComponent extends AXPValueWidgetComponent {
|
|
|
803
799
|
@for (size of sizes(); track size) {
|
|
804
800
|
<div (click)="onSizeClick(size)" [style.font-size]="size" [class.--selected]="size === selectedSize()">
|
|
805
801
|
<div>
|
|
806
|
-
<span>{{ 'font-sizes.' + size | translate
|
|
802
|
+
<span>{{ '@layout:font-sizes.' + size | translate | async }}</span>
|
|
807
803
|
</div>
|
|
808
804
|
</div>
|
|
809
805
|
}
|
|
@@ -815,7 +811,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.8", ngImpor
|
|
|
815
811
|
@for (size of sizes(); track size) {
|
|
816
812
|
<div (click)="onSizeClick(size)" [style.font-size]="size" [class.--selected]="size === selectedSize()">
|
|
817
813
|
<div>
|
|
818
|
-
<span>{{ 'font-sizes.' + size | translate
|
|
814
|
+
<span>{{ '@layout:font-sizes.' + size | translate | async }}</span>
|
|
819
815
|
</div>
|
|
820
816
|
</div>
|
|
821
817
|
}
|
|
@@ -938,11 +934,24 @@ const DEFAULT_ICON_STYLES = [
|
|
|
938
934
|
{ name: 'fa-regular', label: 'Regular' },
|
|
939
935
|
];
|
|
940
936
|
const DEFAULT_ICONS = [
|
|
937
|
+
// Navigation & Actions
|
|
941
938
|
{ name: 'house', label: 'House', tags: ['home', 'building'], supportedStyle: ['fa-regular'] },
|
|
942
939
|
{ name: 'magnifying-glass', label: 'Search', tags: ['find', 'zoom'], supportedStyle: ['fa-solid'] },
|
|
943
940
|
{ name: 'user', label: 'User', tags: ['person', 'account'] },
|
|
944
941
|
{ name: 'check', label: 'Check', tags: ['confirm', 'done'] },
|
|
945
942
|
{ name: 'xmark', label: 'Close', tags: ['cancel', 'exit'] },
|
|
943
|
+
{ name: 'plus', label: 'Add', tags: ['create', 'new', 'plus'] },
|
|
944
|
+
{ name: 'minus', label: 'Remove', tags: ['delete', 'subtract', 'minus'] },
|
|
945
|
+
{ name: 'edit', label: 'Edit', tags: ['modify', 'change', 'pencil'] },
|
|
946
|
+
{ name: 'trash', label: 'Delete', tags: ['remove', 'delete', 'bin'] },
|
|
947
|
+
{ name: 'copy', label: 'Copy', tags: ['duplicate', 'clone'] },
|
|
948
|
+
{ name: 'download', label: 'Download', tags: ['save', 'export'] },
|
|
949
|
+
{ name: 'upload', label: 'Upload', tags: ['import', 'send'] },
|
|
950
|
+
{ name: 'print', label: 'Print', tags: ['printer', 'document'] },
|
|
951
|
+
{ name: 'share', label: 'Share', tags: ['send', 'distribute'] },
|
|
952
|
+
{ name: 'link', label: 'Link', tags: ['url', 'connection'] },
|
|
953
|
+
{ name: 'external-link', label: 'External Link', tags: ['open', 'external'] },
|
|
954
|
+
// Media & Files
|
|
946
955
|
{ name: 'star', label: 'Star', tags: ['favorite', 'rate'] },
|
|
947
956
|
{ name: 'heart', label: 'Heart', tags: ['love', 'like'] },
|
|
948
957
|
{ name: 'cloud', label: 'Cloud', tags: ['weather', 'sky'] },
|
|
@@ -953,6 +962,128 @@ const DEFAULT_ICONS = [
|
|
|
953
962
|
{ name: 'video', label: 'Video', tags: ['film', 'movie'] },
|
|
954
963
|
{ name: 'music', label: 'Music', tags: ['sound', 'audio'] },
|
|
955
964
|
{ name: 'file-lines', label: 'File', tags: ['document', 'text'] },
|
|
965
|
+
{ name: 'file-pdf', label: 'PDF', tags: ['document', 'pdf'] },
|
|
966
|
+
{ name: 'file-image', label: 'Image', tags: ['picture', 'photo'] },
|
|
967
|
+
{ name: 'file-video', label: 'Video File', tags: ['movie', 'clip'] },
|
|
968
|
+
{ name: 'file-audio', label: 'Audio File', tags: ['sound', 'music'] },
|
|
969
|
+
{ name: 'file-zipper', label: 'Archive', tags: ['zip', 'compressed'] },
|
|
970
|
+
{ name: 'image', label: 'Image', tags: ['picture', 'photo'] },
|
|
971
|
+
{ name: 'images', label: 'Images', tags: ['gallery', 'photos'] },
|
|
972
|
+
// Communication & Social
|
|
973
|
+
{ name: 'phone', label: 'Phone', tags: ['call', 'telephone'] },
|
|
974
|
+
{ name: 'mobile', label: 'Mobile', tags: ['cell', 'smartphone'] },
|
|
975
|
+
{ name: 'comment', label: 'Comment', tags: ['message', 'chat'] },
|
|
976
|
+
{ name: 'comments', label: 'Comments', tags: ['messages', 'discussion'] },
|
|
977
|
+
{ name: 'thumbs-up', label: 'Like', tags: ['approve', 'good'] },
|
|
978
|
+
{ name: 'thumbs-down', label: 'Dislike', tags: ['disapprove', 'bad'] },
|
|
979
|
+
{ name: 'bell', label: 'Notification', tags: ['alert', 'reminder'] },
|
|
980
|
+
{ name: 'flag', label: 'Flag', tags: ['mark', 'report'] },
|
|
981
|
+
{ name: 'bookmark', label: 'Bookmark', tags: ['save', 'favorite'] },
|
|
982
|
+
{ name: 'calendar', label: 'Calendar', tags: ['date', 'schedule'] },
|
|
983
|
+
{ name: 'clock', label: 'Clock', tags: ['time', 'schedule'] },
|
|
984
|
+
// Business & Finance
|
|
985
|
+
{ name: 'chart-line', label: 'Chart', tags: ['graph', 'analytics'] },
|
|
986
|
+
{ name: 'chart-bar', label: 'Bar Chart', tags: ['graph', 'statistics'] },
|
|
987
|
+
{ name: 'chart-pie', label: 'Pie Chart', tags: ['graph', 'percentage'] },
|
|
988
|
+
{ name: 'calculator', label: 'Calculator', tags: ['math', 'compute'] },
|
|
989
|
+
{ name: 'dollar-sign', label: 'Dollar', tags: ['money', 'currency'] },
|
|
990
|
+
{ name: 'credit-card', label: 'Credit Card', tags: ['payment', 'card'] },
|
|
991
|
+
{ name: 'receipt', label: 'Receipt', tags: ['bill', 'invoice'] },
|
|
992
|
+
{ name: 'briefcase', label: 'Briefcase', tags: ['business', 'work'] },
|
|
993
|
+
{ name: 'building', label: 'Building', tags: ['office', 'company'] },
|
|
994
|
+
{ name: 'handshake', label: 'Handshake', tags: ['agreement', 'partnership'] },
|
|
995
|
+
// Technology & Tools
|
|
996
|
+
{ name: 'laptop', label: 'Laptop', tags: ['computer', 'notebook'] },
|
|
997
|
+
{ name: 'desktop', label: 'Desktop', tags: ['computer', 'monitor'] },
|
|
998
|
+
{ name: 'tablet', label: 'Tablet', tags: ['ipad', 'device'] },
|
|
999
|
+
{ name: 'keyboard', label: 'Keyboard', tags: ['input', 'typing'] },
|
|
1000
|
+
{ name: 'mouse', label: 'Mouse', tags: ['pointer', 'click'] },
|
|
1001
|
+
{ name: 'wifi', label: 'WiFi', tags: ['internet', 'connection'] },
|
|
1002
|
+
{ name: 'database', label: 'Database', tags: ['data', 'storage'] },
|
|
1003
|
+
{ name: 'server', label: 'Server', tags: ['hosting', 'backend'] },
|
|
1004
|
+
{ name: 'code', label: 'Code', tags: ['programming', 'development'] },
|
|
1005
|
+
{ name: 'bug', label: 'Bug', tags: ['error', 'debug'] },
|
|
1006
|
+
{ name: 'shield', label: 'Shield', tags: ['security', 'protection'] },
|
|
1007
|
+
{ name: 'lock', label: 'Lock', tags: ['security', 'private'] },
|
|
1008
|
+
{ name: 'unlock', label: 'Unlock', tags: ['open', 'access'] },
|
|
1009
|
+
{ name: 'key', label: 'Key', tags: ['access', 'password'] },
|
|
1010
|
+
// Transportation & Location
|
|
1011
|
+
{ name: 'car', label: 'Car', tags: ['vehicle', 'automobile'] },
|
|
1012
|
+
{ name: 'truck', label: 'Truck', tags: ['vehicle', 'delivery'] },
|
|
1013
|
+
{ name: 'plane', label: 'Plane', tags: ['aircraft', 'travel'] },
|
|
1014
|
+
{ name: 'train', label: 'Train', tags: ['railway', 'transport'] },
|
|
1015
|
+
{ name: 'ship', label: 'Ship', tags: ['boat', 'vessel'] },
|
|
1016
|
+
{ name: 'bicycle', label: 'Bicycle', tags: ['bike', 'cycle'] },
|
|
1017
|
+
{ name: 'map', label: 'Map', tags: ['location', 'navigation'] },
|
|
1018
|
+
{ name: 'map-pin', label: 'Location', tags: ['pin', 'marker'] },
|
|
1019
|
+
{ name: 'globe', label: 'Globe', tags: ['world', 'earth'] },
|
|
1020
|
+
{ name: 'compass', label: 'Compass', tags: ['direction', 'navigation'] },
|
|
1021
|
+
// Health & Medical
|
|
1022
|
+
{ name: 'heart-pulse', label: 'Heart Rate', tags: ['health', 'medical'] },
|
|
1023
|
+
{ name: 'stethoscope', label: 'Stethoscope', tags: ['medical', 'doctor'] },
|
|
1024
|
+
{ name: 'pills', label: 'Pills', tags: ['medicine', 'drugs'] },
|
|
1025
|
+
{ name: 'syringe', label: 'Syringe', tags: ['injection', 'medical'] },
|
|
1026
|
+
{ name: 'bandage', label: 'Bandage', tags: ['first aid', 'wound'] },
|
|
1027
|
+
{ name: 'hospital', label: 'Hospital', tags: ['medical', 'healthcare'] },
|
|
1028
|
+
// Education & Learning
|
|
1029
|
+
{ name: 'graduation-cap', label: 'Graduation', tags: ['education', 'degree'] },
|
|
1030
|
+
{ name: 'book', label: 'Book', tags: ['reading', 'education'] },
|
|
1031
|
+
{ name: 'book-open', label: 'Open Book', tags: ['reading', 'study'] },
|
|
1032
|
+
{ name: 'pen', label: 'Pen', tags: ['write', 'draw'] },
|
|
1033
|
+
{ name: 'pencil', label: 'Pencil', tags: ['write', 'draw'] },
|
|
1034
|
+
{ name: 'highlighter', label: 'Highlighter', tags: ['mark', 'emphasize'] },
|
|
1035
|
+
{ name: 'ruler', label: 'Ruler', tags: ['measure', 'straight'] },
|
|
1036
|
+
{ name: 'microscope', label: 'Microscope', tags: ['science', 'research'] },
|
|
1037
|
+
// Food & Dining
|
|
1038
|
+
{ name: 'utensils', label: 'Utensils', tags: ['food', 'dining'] },
|
|
1039
|
+
{ name: 'pizza-slice', label: 'Pizza', tags: ['food', 'slice'] },
|
|
1040
|
+
{ name: 'coffee', label: 'Coffee', tags: ['drink', 'beverage'] },
|
|
1041
|
+
{ name: 'wine-glass', label: 'Wine', tags: ['drink', 'alcohol'] },
|
|
1042
|
+
{ name: 'cake', label: 'Cake', tags: ['dessert', 'sweet'] },
|
|
1043
|
+
{ name: 'apple', label: 'Apple', tags: ['fruit', 'healthy'] },
|
|
1044
|
+
// Sports & Recreation
|
|
1045
|
+
{ name: 'football', label: 'Football', tags: ['sport', 'soccer'] },
|
|
1046
|
+
{ name: 'basketball', label: 'Basketball', tags: ['sport', 'ball'] },
|
|
1047
|
+
{ name: 'baseball', label: 'Baseball', tags: ['sport', 'ball'] },
|
|
1048
|
+
{ name: 'tennis-ball', label: 'Tennis', tags: ['sport', 'racket'] },
|
|
1049
|
+
{ name: 'swimming-pool', label: 'Swimming', tags: ['sport', 'water'] },
|
|
1050
|
+
{ name: 'dumbbell', label: 'Dumbbell', tags: ['fitness', 'weight'] },
|
|
1051
|
+
// Weather & Nature
|
|
1052
|
+
{ name: 'sun', label: 'Sun', tags: ['weather', 'bright'] },
|
|
1053
|
+
{ name: 'moon', label: 'Moon', tags: ['night', 'dark'] },
|
|
1054
|
+
{ name: 'cloud-sun', label: 'Partly Cloudy', tags: ['weather', 'mixed'] },
|
|
1055
|
+
{ name: 'cloud-rain', label: 'Rain', tags: ['weather', 'precipitation'] },
|
|
1056
|
+
{ name: 'snowflake', label: 'Snow', tags: ['weather', 'cold'] },
|
|
1057
|
+
{ name: 'bolt', label: 'Lightning', tags: ['weather', 'storm'] },
|
|
1058
|
+
{ name: 'tree', label: 'Tree', tags: ['nature', 'plant'] },
|
|
1059
|
+
{ name: 'leaf', label: 'Leaf', tags: ['nature', 'plant'] },
|
|
1060
|
+
{ name: 'flower', label: 'Flower', tags: ['nature', 'plant'] },
|
|
1061
|
+
// Shopping & Commerce
|
|
1062
|
+
{ name: 'shopping-cart', label: 'Shopping Cart', tags: ['buy', 'purchase'] },
|
|
1063
|
+
{ name: 'bag-shopping', label: 'Shopping Bag', tags: ['buy', 'store'] },
|
|
1064
|
+
{ name: 'tags', label: 'Tags', tags: ['price', 'label'] },
|
|
1065
|
+
{ name: 'percent', label: 'Percent', tags: ['discount', 'sale'] },
|
|
1066
|
+
{ name: 'gift', label: 'Gift', tags: ['present', 'surprise'] },
|
|
1067
|
+
{ name: 'box', label: 'Box', tags: ['package', 'container'] },
|
|
1068
|
+
// Security & Safety
|
|
1069
|
+
{ name: 'eye', label: 'Eye', tags: ['view', 'watch'] },
|
|
1070
|
+
{ name: 'eye-slash', label: 'Hide', tags: ['hidden', 'invisible'] },
|
|
1071
|
+
{ name: 'user-secret', label: 'Secret User', tags: ['anonymous', 'hidden'] },
|
|
1072
|
+
{ name: 'fingerprint', label: 'Fingerprint', tags: ['biometric', 'identity'] },
|
|
1073
|
+
{ name: 'fire', label: 'Fire', tags: ['hot', 'burn'] },
|
|
1074
|
+
{ name: 'warning', label: 'Warning', tags: ['alert', 'caution'] },
|
|
1075
|
+
{ name: 'exclamation-triangle', label: 'Exclamation', tags: ['warning', 'alert'] },
|
|
1076
|
+
// Miscellaneous
|
|
1077
|
+
{ name: 'question', label: 'Question', tags: ['help', 'ask'] },
|
|
1078
|
+
{ name: 'info', label: 'Info', tags: ['information', 'details'] },
|
|
1079
|
+
{ name: 'lightbulb', label: 'Lightbulb', tags: ['idea', 'bright'] },
|
|
1080
|
+
{ name: 'magic-wand', label: 'Magic Wand', tags: ['magic', 'wish'] },
|
|
1081
|
+
{ name: 'puzzle-piece', label: 'Puzzle', tags: ['piece', 'solve'] },
|
|
1082
|
+
{ name: 'gamepad', label: 'Gamepad', tags: ['gaming', 'controller'] },
|
|
1083
|
+
{ name: 'dice', label: 'Dice', tags: ['game', 'random'] },
|
|
1084
|
+
{ name: 'palette', label: 'Palette', tags: ['color', 'art'] },
|
|
1085
|
+
{ name: 'brush', label: 'Brush', tags: ['paint', 'art'] },
|
|
1086
|
+
{ name: 'scissors', label: 'Scissors', tags: ['cut', 'trim'] },
|
|
956
1087
|
];
|
|
957
1088
|
class AXPIconProviderDefault extends AXPIconProvider {
|
|
958
1089
|
async provide() {
|
|
@@ -1276,7 +1407,7 @@ class AXPIconChooserWidgetEditComponent extends AXPValueWidgetComponent {
|
|
|
1276
1407
|
this.openPopup();
|
|
1277
1408
|
}
|
|
1278
1409
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.8", ngImport: i0, type: AXPIconChooserWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1279
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.1.8", type: AXPIconChooserWidgetEditComponent, isStandalone: true, selector: "ax-icon-chooser-edit", usesInheritance: true, ngImport: i0, template:
|
|
1410
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.1.8", type: AXPIconChooserWidgetEditComponent, isStandalone: true, selector: "ax-icon-chooser-edit", usesInheritance: true, ngImport: i0, template: `
|
|
1280
1411
|
<div
|
|
1281
1412
|
class="ax-grid ax-grid-cols-[6rem_auto] ax-items-center ax-rounded-md ax-text-3xl ax-w-fit"
|
|
1282
1413
|
[class.ax-border]="getValue()"
|
|
@@ -1305,11 +1436,11 @@ class AXPIconChooserWidgetEditComponent extends AXPValueWidgetComponent {
|
|
|
1305
1436
|
</div>
|
|
1306
1437
|
}
|
|
1307
1438
|
</div>
|
|
1308
|
-
|
|
1439
|
+
`, isInline: true, styles: [".icon-container{background-color:rgba(var(--ax-sys-color-primary-300),10%);background-image:linear-gradient(135deg,rgba(var(--ax-sys-color-primary-300),50%) 10%,transparent 0,transparent 50%,rgba(var(--ax-sys-color-primary-300),50%) 0,rgba(var(--ax-sys-color-primary-300),50%) 60%,transparent 0,transparent);background-size:7.5px 7.5px}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1309
1440
|
}
|
|
1310
1441
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.8", ngImport: i0, type: AXPIconChooserWidgetEditComponent, decorators: [{
|
|
1311
1442
|
type: Component,
|
|
1312
|
-
args: [{ selector: 'ax-icon-chooser-edit', template:
|
|
1443
|
+
args: [{ selector: 'ax-icon-chooser-edit', template: `
|
|
1313
1444
|
<div
|
|
1314
1445
|
class="ax-grid ax-grid-cols-[6rem_auto] ax-items-center ax-rounded-md ax-text-3xl ax-w-fit"
|
|
1315
1446
|
[class.ax-border]="getValue()"
|
|
@@ -1338,7 +1469,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.8", ngImpor
|
|
|
1338
1469
|
</div>
|
|
1339
1470
|
}
|
|
1340
1471
|
</div>
|
|
1341
|
-
|
|
1472
|
+
`, changeDetection: ChangeDetectionStrategy.OnPush, styles: [".icon-container{background-color:rgba(var(--ax-sys-color-primary-300),10%);background-image:linear-gradient(135deg,rgba(var(--ax-sys-color-primary-300),50%) 10%,transparent 0,transparent 50%,rgba(var(--ax-sys-color-primary-300),50%) 0,rgba(var(--ax-sys-color-primary-300),50%) 60%,transparent 0,transparent);background-size:7.5px 7.5px}\n"] }]
|
|
1342
1473
|
}] });
|
|
1343
1474
|
|
|
1344
1475
|
var iconChooserEdit_component = /*#__PURE__*/Object.freeze({
|
|
@@ -1391,7 +1522,7 @@ class AXPMenuOrientationChooserWidgetComponent extends AXPValueWidgetComponent {
|
|
|
1391
1522
|
<div>
|
|
1392
1523
|
<i [class]="orientation.icon"></i>
|
|
1393
1524
|
</div>
|
|
1394
|
-
<span>{{ 'menu-modes.' + orientation.id | translate
|
|
1525
|
+
<span>{{ '@layout:menu-modes.' + orientation.id | translate | async }}</span>
|
|
1395
1526
|
</div>
|
|
1396
1527
|
}
|
|
1397
1528
|
`, isInline: true, styles: [":host{display:flex;flex-direction:row;flex-wrap:wrap;gap:.5rem}:host>div{display:flex;cursor:pointer;flex-direction:row;align-items:center;justify-content:space-between;gap:.5rem;border-radius:.5rem;padding:.5rem 1rem;background-color:rgb(var(--ax-sys-color-light-surface));color:rgb(var(--ax-sys-color-on-light-surface));border-color:rgb(var(--ax-sys-color-border-light-surface))}:host>div:is(.ax-dark *){background-color:rgb(var(--ax-sys-color-surface));color:rgb(var(--ax-sys-color-on-surface));border-color:rgb(var(--ax-sys-color-border-surface))}:host>div{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.2s;animation-duration:.2s}:host>div:hover{background-color:rgb(var(--ax-sys-color-dark-surface));color:rgb(var(--ax-sys-color-on-dark-surface));border-color:rgb(var(--ax-sys-color-border-dark-surface))}:host>div.--selected{background-color:rgb(var(--ax-sys-color-primary-lighter-surface));color:rgb(var(--ax-sys-color-on-primary-lighter-surface));border-color:rgb(var(--ax-sys-color-border-primary-lighter-surface))}:host>div>div{display:flex;align-items:center;justify-content:center}:host>div>div i{font-size:1.25rem;line-height:1.75rem}:host>div>span{font-size:.875rem;line-height:1.25rem;font-weight:600;line-height:1.625}:host>div{padding-top:.25rem!important;padding-bottom:.25rem!important}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: AXSelectionCdkModule }, { kind: "ngmodule", type: AXTranslationModule }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }, { kind: "pipe", type: i2$1.AXTranslatorPipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
@@ -1404,7 +1535,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.8", ngImpor
|
|
|
1404
1535
|
<div>
|
|
1405
1536
|
<i [class]="orientation.icon"></i>
|
|
1406
1537
|
</div>
|
|
1407
|
-
<span>{{ 'menu-modes.' + orientation.id | translate
|
|
1538
|
+
<span>{{ '@layout:menu-modes.' + orientation.id | translate | async }}</span>
|
|
1408
1539
|
</div>
|
|
1409
1540
|
}
|
|
1410
1541
|
`, standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [CommonModule, FormsModule, AXSelectionCdkModule, AXTranslationModule], styles: [":host{display:flex;flex-direction:row;flex-wrap:wrap;gap:.5rem}:host>div{display:flex;cursor:pointer;flex-direction:row;align-items:center;justify-content:space-between;gap:.5rem;border-radius:.5rem;padding:.5rem 1rem;background-color:rgb(var(--ax-sys-color-light-surface));color:rgb(var(--ax-sys-color-on-light-surface));border-color:rgb(var(--ax-sys-color-border-light-surface))}:host>div:is(.ax-dark *){background-color:rgb(var(--ax-sys-color-surface));color:rgb(var(--ax-sys-color-on-surface));border-color:rgb(var(--ax-sys-color-border-surface))}:host>div{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.2s;animation-duration:.2s}:host>div:hover{background-color:rgb(var(--ax-sys-color-dark-surface));color:rgb(var(--ax-sys-color-on-dark-surface));border-color:rgb(var(--ax-sys-color-border-dark-surface))}:host>div.--selected{background-color:rgb(var(--ax-sys-color-primary-lighter-surface));color:rgb(var(--ax-sys-color-on-primary-lighter-surface));border-color:rgb(var(--ax-sys-color-border-primary-lighter-surface))}:host>div>div{display:flex;align-items:center;justify-content:center}:host>div>div i{font-size:1.25rem;line-height:1.75rem}:host>div>span{font-size:.875rem;line-height:1.25rem;font-weight:600;line-height:1.625}:host>div{padding-top:.25rem!important;padding-bottom:.25rem!important}\n"] }]
|
|
@@ -1459,7 +1590,7 @@ class AXPThemeModeChooserWidgetComponent extends AXPValueWidgetComponent {
|
|
|
1459
1590
|
<div>
|
|
1460
1591
|
<i [class]="mode.icon"></i>
|
|
1461
1592
|
</div>
|
|
1462
|
-
<span>{{ 'theme-modes.' + mode.id | translate
|
|
1593
|
+
<span>{{ '@layout:theme-modes.' + mode.id | translate | async }}</span>
|
|
1463
1594
|
</div>
|
|
1464
1595
|
}
|
|
1465
1596
|
`, isInline: true, styles: [":host{display:flex;flex-direction:row;flex-wrap:wrap;gap:.5rem}:host>div{display:flex;cursor:pointer;flex-direction:row;align-items:center;justify-content:space-between;gap:.5rem;border-radius:.5rem;padding:.5rem 1rem;background-color:rgb(var(--ax-sys-color-light-surface));color:rgb(var(--ax-sys-color-on-light-surface));border-color:rgb(var(--ax-sys-color-border-light-surface))}:host>div:is(.ax-dark *){background-color:rgb(var(--ax-sys-color-surface));color:rgb(var(--ax-sys-color-on-surface));border-color:rgb(var(--ax-sys-color-border-surface))}:host>div{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.2s;animation-duration:.2s}:host>div:hover{background-color:rgb(var(--ax-sys-color-dark-surface));color:rgb(var(--ax-sys-color-on-dark-surface));border-color:rgb(var(--ax-sys-color-border-dark-surface))}:host>div.--selected{background-color:rgb(var(--ax-sys-color-primary-lighter-surface));color:rgb(var(--ax-sys-color-on-primary-lighter-surface));border-color:rgb(var(--ax-sys-color-border-primary-lighter-surface))}:host>div>div{display:flex;align-items:center;justify-content:center}:host>div>div i{font-size:1.25rem;line-height:1.75rem}:host>div>span{font-size:.875rem;line-height:1.25rem;font-weight:600;line-height:1.625}:host>div{padding-top:.25rem!important;padding-bottom:.25rem!important}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: AXSelectionCdkModule }, { kind: "ngmodule", type: AXTranslationModule }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }, { kind: "pipe", type: i2$1.AXTranslatorPipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
@@ -1472,7 +1603,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.8", ngImpor
|
|
|
1472
1603
|
<div>
|
|
1473
1604
|
<i [class]="mode.icon"></i>
|
|
1474
1605
|
</div>
|
|
1475
|
-
<span>{{ 'theme-modes.' + mode.id | translate
|
|
1606
|
+
<span>{{ '@layout:theme-modes.' + mode.id | translate | async }}</span>
|
|
1476
1607
|
</div>
|
|
1477
1608
|
}
|
|
1478
1609
|
`, standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [CommonModule, FormsModule, AXSelectionCdkModule, AXTranslationModule], styles: [":host{display:flex;flex-direction:row;flex-wrap:wrap;gap:.5rem}:host>div{display:flex;cursor:pointer;flex-direction:row;align-items:center;justify-content:space-between;gap:.5rem;border-radius:.5rem;padding:.5rem 1rem;background-color:rgb(var(--ax-sys-color-light-surface));color:rgb(var(--ax-sys-color-on-light-surface));border-color:rgb(var(--ax-sys-color-border-light-surface))}:host>div:is(.ax-dark *){background-color:rgb(var(--ax-sys-color-surface));color:rgb(var(--ax-sys-color-on-surface));border-color:rgb(var(--ax-sys-color-border-surface))}:host>div{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.2s;animation-duration:.2s}:host>div:hover{background-color:rgb(var(--ax-sys-color-dark-surface));color:rgb(var(--ax-sys-color-on-dark-surface));border-color:rgb(var(--ax-sys-color-border-dark-surface))}:host>div.--selected{background-color:rgb(var(--ax-sys-color-primary-lighter-surface));color:rgb(var(--ax-sys-color-on-primary-lighter-surface));border-color:rgb(var(--ax-sys-color-border-primary-lighter-surface))}:host>div>div{display:flex;align-items:center;justify-content:center}:host>div>div i{font-size:1.25rem;line-height:1.75rem}:host>div>span{font-size:.875rem;line-height:1.25rem;font-weight:600;line-height:1.625}:host>div{padding-top:.25rem!important;padding-bottom:.25rem!important}\n"] }]
|
|
@@ -1596,7 +1727,7 @@ class AXPThemesSharedModule {
|
|
|
1596
1727
|
provide: AXP_SETTING_DEFINITION_PROVIDER,
|
|
1597
1728
|
useFactory: async () => {
|
|
1598
1729
|
const injector = inject(Injector);
|
|
1599
|
-
const provider = (await import('./acorex-platform-themes-shared-settings.provider-
|
|
1730
|
+
const provider = (await import('./acorex-platform-themes-shared-settings.provider-CLUKU4y0.mjs')).AXPThemeSettingProvider;
|
|
1600
1731
|
return new provider(injector);
|
|
1601
1732
|
},
|
|
1602
1733
|
multi: true,
|
|
@@ -1654,7 +1785,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.8", ngImpor
|
|
|
1654
1785
|
provide: AXP_SETTING_DEFINITION_PROVIDER,
|
|
1655
1786
|
useFactory: async () => {
|
|
1656
1787
|
const injector = inject(Injector);
|
|
1657
|
-
const provider = (await import('./acorex-platform-themes-shared-settings.provider-
|
|
1788
|
+
const provider = (await import('./acorex-platform-themes-shared-settings.provider-CLUKU4y0.mjs')).AXPThemeSettingProvider;
|
|
1658
1789
|
return new provider(injector);
|
|
1659
1790
|
},
|
|
1660
1791
|
multi: true,
|