export from culture
This commit is contained in:
committed by
Jacob Overgaard
parent
5e845acbec
commit
e6c7ee7ba9
@@ -1 +1 @@
|
||||
import './input-culture-select/input-culture-select.element.js';
|
||||
export * from './input-culture-select/input-culture-select.element.js';
|
||||
|
||||
@@ -1,10 +1,6 @@
|
||||
import { UmbCultureRepository } from '../../repository/culture.repository.js';
|
||||
import { css, html, repeat, ifDefined, customElement, property, state } from '@umbraco-cms/backoffice/external/lit';
|
||||
import {
|
||||
FormControlMixin,
|
||||
UUIComboboxElement,
|
||||
UUIComboboxEvent,
|
||||
} from '@umbraco-cms/backoffice/external/uui';
|
||||
import { html, repeat, ifDefined, customElement, property, state } from '@umbraco-cms/backoffice/external/lit';
|
||||
import { FormControlMixin, UUIComboboxElement, UUIComboboxEvent } from '@umbraco-cms/backoffice/external/uui';
|
||||
import { UmbChangeEvent } from '@umbraco-cms/backoffice/events';
|
||||
import { UmbLitElement } from '@umbraco-cms/internal/lit-element';
|
||||
import { CultureReponseModel } from '@umbraco-cms/backoffice/backend-api';
|
||||
@@ -89,12 +85,11 @@ export class UmbInputCultureSelectElement extends FormControlMixin(UmbLitElement
|
||||
${repeat(
|
||||
this.#filteredCultures,
|
||||
(culture) => culture.name,
|
||||
(culture) =>
|
||||
html`
|
||||
<uui-combobox-list-option value=${ifDefined(culture.name)}
|
||||
>${culture.englishName}</uui-combobox-list-option
|
||||
>
|
||||
`
|
||||
(culture) => html`
|
||||
<uui-combobox-list-option value=${ifDefined(culture.name)}
|
||||
>${culture.englishName}</uui-combobox-list-option
|
||||
>
|
||||
`,
|
||||
)}
|
||||
</uui-combobox-list>
|
||||
</uui-combobox>
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
export * from './components/index.js';
|
||||
export * from './repository/culture.repository.js';
|
||||
@@ -43,6 +43,7 @@ export * from './store/index.js';
|
||||
export * from './tree/index.js';
|
||||
export * from './variant/index.js';
|
||||
export * from './workspace/index.js';
|
||||
export * from './culture/index.js';
|
||||
|
||||
const manifests: Array<ManifestTypes | UmbBackofficeManifestKind> = [
|
||||
...conditionManifests,
|
||||
|
||||
Reference in New Issue
Block a user