@breadstone/mosaik-elements-angular 0.0.243 → 0.0.245
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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
## 0.0.245 (2026-04-30)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- **layouts:** enhance layout components with CSS custom properties and slot adjustments ([d72d6116bb](https://github.com/RueDeRennes/mosaik/commit/d72d6116bb))
|
|
6
|
+
- **page-header:** enhance typography and layout for headers and subheaders ([824031a02a](https://github.com/RueDeRennes/mosaik/commit/824031a02a))
|
|
7
|
+
|
|
8
|
+
## 0.0.244 (2026-04-30)
|
|
9
|
+
|
|
10
|
+
This was a version bump only for mosaik-elements-angular to align it with other projects, there were no code changes.
|
|
11
|
+
|
|
1
12
|
## 0.0.243 (2026-04-30)
|
|
2
13
|
|
|
3
14
|
### 🚀 Features
|
|
@@ -17222,6 +17222,10 @@ let ToastComponent = class ToastComponent {
|
|
|
17222
17222
|
if (headerValue !== undefined) {
|
|
17223
17223
|
this._element.header = headerValue;
|
|
17224
17224
|
}
|
|
17225
|
+
const contentValue = this.content();
|
|
17226
|
+
if (contentValue !== undefined) {
|
|
17227
|
+
this._element.content = contentValue;
|
|
17228
|
+
}
|
|
17225
17229
|
const timeoutValue = this.timeout();
|
|
17226
17230
|
if (timeoutValue !== undefined) {
|
|
17227
17231
|
this._element.timeout = timeoutValue;
|
|
@@ -22234,6 +22238,10 @@ let BusyStateComponent = class BusyStateComponent {
|
|
|
22234
22238
|
if (themeNameValue !== undefined) {
|
|
22235
22239
|
this._element.themeName = themeNameValue;
|
|
22236
22240
|
}
|
|
22241
|
+
const contentValue = this.content();
|
|
22242
|
+
if (contentValue !== undefined) {
|
|
22243
|
+
this._element.content = contentValue;
|
|
22244
|
+
}
|
|
22237
22245
|
const formatterValue = this.formatter();
|
|
22238
22246
|
if (formatterValue !== undefined) {
|
|
22239
22247
|
this._element.formatter = formatterValue;
|
|
@@ -25296,6 +25304,10 @@ let CardComponent = class CardComponent {
|
|
|
25296
25304
|
if (subHeaderValue !== undefined) {
|
|
25297
25305
|
this._element.subHeader = subHeaderValue;
|
|
25298
25306
|
}
|
|
25307
|
+
const contentValue = this.content();
|
|
25308
|
+
if (contentValue !== undefined) {
|
|
25309
|
+
this._element.content = contentValue;
|
|
25310
|
+
}
|
|
25299
25311
|
const inlineMediaValue = this.inlineMedia();
|
|
25300
25312
|
if (inlineMediaValue !== undefined) {
|
|
25301
25313
|
this._element.inlineMedia = inlineMediaValue;
|
|
@@ -37366,6 +37378,10 @@ let CommentComponent = class CommentComponent {
|
|
|
37366
37378
|
if (atValue !== undefined) {
|
|
37367
37379
|
this._element.at = atValue;
|
|
37368
37380
|
}
|
|
37381
|
+
const contentValue = this.content();
|
|
37382
|
+
if (contentValue !== undefined) {
|
|
37383
|
+
this._element.content = contentValue;
|
|
37384
|
+
}
|
|
37369
37385
|
const themeNameValue = this.themeName();
|
|
37370
37386
|
if (themeNameValue !== undefined) {
|
|
37371
37387
|
this._element.themeName = themeNameValue;
|
|
@@ -39710,8 +39726,8 @@ const DESIGNER_CONTENT_DEFAULT_PROPS = new InjectionToken('MOSAIK_DESIGNER_CONTE
|
|
|
39710
39726
|
* @public
|
|
39711
39727
|
*
|
|
39712
39728
|
* @slot - Default slot for the canvas (mosaik-designer-canvas)
|
|
39713
|
-
* @slot before-canvas - Generic extension slot before the canvas
|
|
39714
39729
|
* @slot after-canvas - Generic extension slot after the canvas
|
|
39730
|
+
* @slot before-canvas - Generic extension slot before the canvas
|
|
39715
39731
|
* @slot style - Custom styles injection slot for shadow DOM styling escape hatch
|
|
39716
39732
|
*/
|
|
39717
39733
|
let DesignerContentComponent = class DesignerContentComponent {
|
|
@@ -40056,10 +40072,10 @@ const DESIGNER_DEFAULT_PROPS = new InjectionToken('MOSAIK_DESIGNER_DEFAULT_PROPS
|
|
|
40056
40072
|
* @public
|
|
40057
40073
|
*
|
|
40058
40074
|
* @slot - Default slot for the primary workspace structure (mosaik-designer-content)
|
|
40059
|
-
* @slot header - Generic extension slot for header content such as toolbars
|
|
40060
|
-
* @slot before-content - Generic extension slot before the main content area
|
|
40061
40075
|
* @slot after-content - Generic extension slot after the main content area
|
|
40076
|
+
* @slot before-content - Generic extension slot before the main content area
|
|
40062
40077
|
* @slot footer - Generic extension slot for footer content such as status bars
|
|
40078
|
+
* @slot header - Generic extension slot for header content such as toolbars
|
|
40063
40079
|
* @slot style - Custom styles injection slot for shadow DOM styling escape hatch
|
|
40064
40080
|
*/
|
|
40065
40081
|
let DesignerComponent = class DesignerComponent {
|
|
@@ -41537,6 +41553,10 @@ let DrawerContainerComponent = class DrawerContainerComponent {
|
|
|
41537
41553
|
if (hasBackdropValue !== undefined) {
|
|
41538
41554
|
this._element.hasBackdrop = hasBackdropValue;
|
|
41539
41555
|
}
|
|
41556
|
+
const contentValue = this.content();
|
|
41557
|
+
if (contentValue !== undefined) {
|
|
41558
|
+
this._element.content = contentValue;
|
|
41559
|
+
}
|
|
41540
41560
|
const themeNameValue = this.themeName();
|
|
41541
41561
|
if (themeNameValue !== undefined) {
|
|
41542
41562
|
this._element.themeName = themeNameValue;
|
|
@@ -43186,6 +43206,10 @@ let EmptyStateComponent = class EmptyStateComponent {
|
|
|
43186
43206
|
if (themeNameValue !== undefined) {
|
|
43187
43207
|
this._element.themeName = themeNameValue;
|
|
43188
43208
|
}
|
|
43209
|
+
const contentValue = this.content();
|
|
43210
|
+
if (contentValue !== undefined) {
|
|
43211
|
+
this._element.content = contentValue;
|
|
43212
|
+
}
|
|
43189
43213
|
const formatterValue = this.formatter();
|
|
43190
43214
|
if (formatterValue !== undefined) {
|
|
43191
43215
|
this._element.formatter = formatterValue;
|
|
@@ -44218,6 +44242,10 @@ let ErrorStateComponent = class ErrorStateComponent {
|
|
|
44218
44242
|
if (themeNameValue !== undefined) {
|
|
44219
44243
|
this._element.themeName = themeNameValue;
|
|
44220
44244
|
}
|
|
44245
|
+
const contentValue = this.content();
|
|
44246
|
+
if (contentValue !== undefined) {
|
|
44247
|
+
this._element.content = contentValue;
|
|
44248
|
+
}
|
|
44221
44249
|
const formatterValue = this.formatter();
|
|
44222
44250
|
if (formatterValue !== undefined) {
|
|
44223
44251
|
this._element.formatter = formatterValue;
|
|
@@ -47653,8 +47681,8 @@ const FLOW_BOARD_COLUMN_COMPOSER_DEFAULT_PROPS = new InjectionToken('MOSAIK_FLOW
|
|
|
47653
47681
|
/**
|
|
47654
47682
|
* @public
|
|
47655
47683
|
*
|
|
47656
|
-
* @slot trigger - The trigger element that opens the form (e.g., "Add another list" button)
|
|
47657
47684
|
* @slot form - The form content for creating new columns (completely user-defined)
|
|
47685
|
+
* @slot trigger - The trigger element that opens the form (e.g., "Add another list" button)
|
|
47658
47686
|
* @slot style - Custom styles injection slot for shadow DOM styling escape hatch
|
|
47659
47687
|
*/
|
|
47660
47688
|
let FlowBoardColumnComposerComponent = class FlowBoardColumnComposerComponent {
|
|
@@ -47840,8 +47868,8 @@ const FLOW_BOARD_COLUMN_ITEM_COMPOSER_DEFAULT_PROPS = new InjectionToken('MOSAIK
|
|
|
47840
47868
|
/**
|
|
47841
47869
|
* @public
|
|
47842
47870
|
*
|
|
47843
|
-
* @slot trigger - The trigger element that opens the form (e.g., "Add another item" button)
|
|
47844
47871
|
* @slot form - The form content for creating new items (completely user-defined)
|
|
47872
|
+
* @slot trigger - The trigger element that opens the form (e.g., "Add another item" button)
|
|
47845
47873
|
* @slot style - Custom styles injection slot for shadow DOM styling escape hatch
|
|
47846
47874
|
*/
|
|
47847
47875
|
let FlowBoardColumnItemComposerComponent = class FlowBoardColumnItemComposerComponent {
|
|
@@ -48037,11 +48065,11 @@ const FLOW_BOARD_COLUMN_ITEM_DEFAULT_PROPS = new InjectionToken('MOSAIK_FLOW_BOA
|
|
|
48037
48065
|
/**
|
|
48038
48066
|
* @public
|
|
48039
48067
|
*
|
|
48040
|
-
* @slot title - The title content of the item
|
|
48041
|
-
* @slot subtitle - The subtitle content of the item
|
|
48042
48068
|
* @slot actions - Action buttons or links related to the item
|
|
48043
|
-
* @slot meta - Additional metadata like price or status
|
|
48044
48069
|
* @slot footer - Footer content with actions or avatars
|
|
48070
|
+
* @slot meta - Additional metadata like price or status
|
|
48071
|
+
* @slot subtitle - The subtitle content of the item
|
|
48072
|
+
* @slot title - The title content of the item
|
|
48045
48073
|
* @slot style - Custom styles injection slot for shadow DOM styling escape hatch
|
|
48046
48074
|
*/
|
|
48047
48075
|
let FlowBoardColumnItemComponent = class FlowBoardColumnItemComponent {
|
|
@@ -48352,11 +48380,11 @@ const FLOW_BOARD_COLUMN_DEFAULT_PROPS = new InjectionToken('MOSAIK_FLOW_BOARD_CO
|
|
|
48352
48380
|
* @public
|
|
48353
48381
|
*
|
|
48354
48382
|
* @slot - Default slot for FlowBoardColumnItem elements
|
|
48355
|
-
* @slot title - The title content of the column header
|
|
48356
|
-
* @slot meta - Metadata content (badges, counts, KPIs)
|
|
48357
48383
|
* @slot actions - Action buttons for the column
|
|
48358
|
-
* @slot footer - Footer content (usually contains a composer)
|
|
48359
48384
|
* @slot empty - Content to show when the column has no items
|
|
48385
|
+
* @slot footer - Footer content (usually contains a composer)
|
|
48386
|
+
* @slot meta - Metadata content (badges, counts, KPIs)
|
|
48387
|
+
* @slot title - The title content of the column header
|
|
48360
48388
|
* @slot style - Custom styles injection slot for shadow DOM styling escape hatch
|
|
48361
48389
|
*/
|
|
48362
48390
|
let FlowBoardColumnComponent = class FlowBoardColumnComponent {
|
|
@@ -54572,6 +54600,10 @@ let ListingItemComponent = class ListingItemComponent {
|
|
|
54572
54600
|
if (headerValue !== undefined) {
|
|
54573
54601
|
this._element.header = headerValue;
|
|
54574
54602
|
}
|
|
54603
|
+
const contentValue = this.content();
|
|
54604
|
+
if (contentValue !== undefined) {
|
|
54605
|
+
this._element.content = contentValue;
|
|
54606
|
+
}
|
|
54575
54607
|
const valueValue = this.value();
|
|
54576
54608
|
if (valueValue !== undefined) {
|
|
54577
54609
|
this._element.value = valueValue;
|
|
@@ -56707,6 +56739,10 @@ let MessageComponent = class MessageComponent {
|
|
|
56707
56739
|
if (headerValue !== undefined) {
|
|
56708
56740
|
this._element.header = headerValue;
|
|
56709
56741
|
}
|
|
56742
|
+
const contentValue = this.content();
|
|
56743
|
+
if (contentValue !== undefined) {
|
|
56744
|
+
this._element.content = contentValue;
|
|
56745
|
+
}
|
|
56710
56746
|
const expandableValue = this.expandable();
|
|
56711
56747
|
if (expandableValue !== undefined) {
|
|
56712
56748
|
this._element.expandable = expandableValue;
|
|
@@ -58669,7 +58705,12 @@ const PAGE_HEADER_DEFAULT_PROPS = new InjectionToken('MOSAIK_PAGE_HEADER_DEFAULT
|
|
|
58669
58705
|
/**
|
|
58670
58706
|
* @public
|
|
58671
58707
|
*
|
|
58708
|
+
* @slot - The default slot.
|
|
58709
|
+
* @slot additionalHeader - The additionalHeader slot.
|
|
58672
58710
|
* @slot header - The header content.
|
|
58711
|
+
* @slot prefix - The prefix slot.
|
|
58712
|
+
* @slot subHeader - The subHeader slot.
|
|
58713
|
+
* @slot suffix - The suffix slot.
|
|
58673
58714
|
* @slot style - Custom styles injection slot for shadow DOM styling escape hatch
|
|
58674
58715
|
*/
|
|
58675
58716
|
let PageHeaderComponent = class PageHeaderComponent {
|
|
@@ -58698,6 +58739,18 @@ let PageHeaderComponent = class PageHeaderComponent {
|
|
|
58698
58739
|
* @public
|
|
58699
58740
|
*/
|
|
58700
58741
|
text = input(...(ngDevMode ? [undefined, { debugName: "text" }] : /* istanbul ignore next */ []));
|
|
58742
|
+
/**
|
|
58743
|
+
* Signal input for the `subText` property.
|
|
58744
|
+
*
|
|
58745
|
+
* @public
|
|
58746
|
+
*/
|
|
58747
|
+
subText = input(...(ngDevMode ? [undefined, { debugName: "subText" }] : /* istanbul ignore next */ []));
|
|
58748
|
+
/**
|
|
58749
|
+
* Signal input for the `additionalText` property.
|
|
58750
|
+
*
|
|
58751
|
+
* @public
|
|
58752
|
+
*/
|
|
58753
|
+
additionalText = input(...(ngDevMode ? [undefined, { debugName: "additionalText" }] : /* istanbul ignore next */ []));
|
|
58701
58754
|
/**
|
|
58702
58755
|
* Signal input for the `themeName` property.
|
|
58703
58756
|
*
|
|
@@ -58735,6 +58788,14 @@ let PageHeaderComponent = class PageHeaderComponent {
|
|
|
58735
58788
|
if (textValue !== undefined) {
|
|
58736
58789
|
this._element.text = textValue;
|
|
58737
58790
|
}
|
|
58791
|
+
const subTextValue = this.subText();
|
|
58792
|
+
if (subTextValue !== undefined) {
|
|
58793
|
+
this._element.subText = subTextValue;
|
|
58794
|
+
}
|
|
58795
|
+
const additionalTextValue = this.additionalText();
|
|
58796
|
+
if (additionalTextValue !== undefined) {
|
|
58797
|
+
this._element.additionalText = additionalTextValue;
|
|
58798
|
+
}
|
|
58738
58799
|
const themeNameValue = this.themeName();
|
|
58739
58800
|
if (themeNameValue !== undefined) {
|
|
58740
58801
|
this._element.themeName = themeNameValue;
|
|
@@ -58799,13 +58860,13 @@ let PageHeaderComponent = class PageHeaderComponent {
|
|
|
58799
58860
|
this._element[property] = value;
|
|
58800
58861
|
}
|
|
58801
58862
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.10", ngImport: i0, type: PageHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
58802
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.10", type: PageHeaderComponent, isStandalone: true, selector: "mosaik-page-header", inputs: { text: { classPropertyName: "text", publicName: "text", isSignal: true, isRequired: false, transformFunction: null }, themeName: { classPropertyName: "themeName", publicName: "themeName", isSignal: true, isRequired: false, transformFunction: null }, inset: { classPropertyName: "inset", publicName: "inset", isSignal: true, isRequired: false, transformFunction: null }, dir: { classPropertyName: "dir", publicName: "dir", isSignal: true, isRequired: false, transformFunction: null }, lang: { classPropertyName: "lang", publicName: "lang", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
58863
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.10", type: PageHeaderComponent, isStandalone: true, selector: "mosaik-page-header", inputs: { text: { classPropertyName: "text", publicName: "text", isSignal: true, isRequired: false, transformFunction: null }, subText: { classPropertyName: "subText", publicName: "subText", isSignal: true, isRequired: false, transformFunction: null }, additionalText: { classPropertyName: "additionalText", publicName: "additionalText", isSignal: true, isRequired: false, transformFunction: null }, themeName: { classPropertyName: "themeName", publicName: "themeName", isSignal: true, isRequired: false, transformFunction: null }, inset: { classPropertyName: "inset", publicName: "inset", isSignal: true, isRequired: false, transformFunction: null }, dir: { classPropertyName: "dir", publicName: "dir", isSignal: true, isRequired: false, transformFunction: null }, lang: { classPropertyName: "lang", publicName: "lang", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
58803
58864
|
};
|
|
58804
58865
|
PageHeaderComponent = __decorate$1I([
|
|
58805
58866
|
ProxyCmp({
|
|
58806
58867
|
defineCustomElementFn: () => customElements.define('mosaik-page-header', PageHeaderElement),
|
|
58807
|
-
inputs: ['text', 'themeName', 'inset', 'dir', 'lang'],
|
|
58808
|
-
methods: ['adoptStyle', 'on', 'off', 'emit', 'requestUpdate']
|
|
58868
|
+
inputs: ['text', 'subText', 'additionalText', 'themeName', 'inset', 'dir', 'lang'],
|
|
58869
|
+
methods: ['assignToSlot', 'getSlotAssignments', 'getSlotAssignmentsOf', 'getSlotContent', 'hasSlotContent', 'hasSlot', 'onSlotChanges', 'adoptStyle', 'on', 'off', 'emit', 'requestUpdate']
|
|
58809
58870
|
}),
|
|
58810
58871
|
__metadata$1I("design:paramtypes", [])
|
|
58811
58872
|
], PageHeaderComponent);
|
|
@@ -58817,7 +58878,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.10", ngImpo
|
|
|
58817
58878
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
58818
58879
|
template: '<ng-content></ng-content>'
|
|
58819
58880
|
}]
|
|
58820
|
-
}], ctorParameters: () => [], propDecorators: { text: [{ type: i0.Input, args: [{ isSignal: true, alias: "text", required: false }] }], themeName: [{ type: i0.Input, args: [{ isSignal: true, alias: "themeName", required: false }] }], inset: [{ type: i0.Input, args: [{ isSignal: true, alias: "inset", required: false }] }], dir: [{ type: i0.Input, args: [{ isSignal: true, alias: "dir", required: false }] }], lang: [{ type: i0.Input, args: [{ isSignal: true, alias: "lang", required: false }] }], connected: [{ type: i0.Output, args: ["connected"] }], disconnected: [{ type: i0.Output, args: ["disconnected"] }], changed: [{ type: i0.Output, args: ["changed"] }] } });
|
|
58881
|
+
}], ctorParameters: () => [], propDecorators: { text: [{ type: i0.Input, args: [{ isSignal: true, alias: "text", required: false }] }], subText: [{ type: i0.Input, args: [{ isSignal: true, alias: "subText", required: false }] }], additionalText: [{ type: i0.Input, args: [{ isSignal: true, alias: "additionalText", required: false }] }], themeName: [{ type: i0.Input, args: [{ isSignal: true, alias: "themeName", required: false }] }], inset: [{ type: i0.Input, args: [{ isSignal: true, alias: "inset", required: false }] }], dir: [{ type: i0.Input, args: [{ isSignal: true, alias: "dir", required: false }] }], lang: [{ type: i0.Input, args: [{ isSignal: true, alias: "lang", required: false }] }], connected: [{ type: i0.Output, args: ["connected"] }], disconnected: [{ type: i0.Output, args: ["disconnected"] }], changed: [{ type: i0.Output, args: ["changed"] }] } });
|
|
58821
58882
|
/**
|
|
58822
58883
|
* @public
|
|
58823
58884
|
*/
|
|
@@ -58851,6 +58912,7 @@ const PAGE_PRE_CONTENT_DEFAULT_PROPS = new InjectionToken('MOSAIK_PAGE_PRE_CONTE
|
|
|
58851
58912
|
/**
|
|
58852
58913
|
* @public
|
|
58853
58914
|
*
|
|
58915
|
+
* @slot - The default slot.
|
|
58854
58916
|
* @slot style - Custom styles injection slot for shadow DOM styling escape hatch
|
|
58855
58917
|
*/
|
|
58856
58918
|
let PagePreContentComponent = class PagePreContentComponent {
|
|
@@ -59022,6 +59084,7 @@ const PAGE_PRE_HEADER_DEFAULT_PROPS = new InjectionToken('MOSAIK_PAGE_PRE_HEADER
|
|
|
59022
59084
|
/**
|
|
59023
59085
|
* @public
|
|
59024
59086
|
*
|
|
59087
|
+
* @slot - The default slot.
|
|
59025
59088
|
* @slot style - Custom styles injection slot for shadow DOM styling escape hatch
|
|
59026
59089
|
*/
|
|
59027
59090
|
let PagePreHeaderComponent = class PagePreHeaderComponent {
|
|
@@ -59193,11 +59256,11 @@ const PAGE_DEFAULT_PROPS = new InjectionToken('MOSAIK_PAGE_DEFAULT_PROPS');
|
|
|
59193
59256
|
/**
|
|
59194
59257
|
* @public
|
|
59195
59258
|
*
|
|
59196
|
-
* @slot preHeader - Content displayed before the main header (e.g., notifications, alerts)
|
|
59197
|
-
* @slot header - Primary page header content (e.g., navigation, title, actions)
|
|
59198
|
-
* @slot preContent - Content between header and main content (e.g., breadcrumbs, filters)
|
|
59199
59259
|
* @slot content - Main page content area
|
|
59200
59260
|
* @slot footer - Page footer content (e.g., copyright, links)
|
|
59261
|
+
* @slot header - Primary page header content (e.g., navigation, title, actions)
|
|
59262
|
+
* @slot preContent - Content between header and main content (e.g., breadcrumbs, filters)
|
|
59263
|
+
* @slot preHeader - Content displayed before the main header (e.g., notifications, alerts)
|
|
59201
59264
|
* @slot style - Custom styles injection slot for shadow DOM styling escape hatch
|
|
59202
59265
|
*/
|
|
59203
59266
|
let PageComponent = class PageComponent {
|
|
@@ -59370,8 +59433,8 @@ const PAGE_MENU_DEFAULT_PROPS = new InjectionToken('MOSAIK_PAGE_MENU_DEFAULT_PRO
|
|
|
59370
59433
|
* @public
|
|
59371
59434
|
*
|
|
59372
59435
|
* @slot - The content of the page menu.
|
|
59373
|
-
* @slot start - The start content of the page menu.
|
|
59374
59436
|
* @slot end - The end content of the page menu.
|
|
59437
|
+
* @slot start - The start content of the page menu.
|
|
59375
59438
|
* @slot style - Custom styles injection slot for shadow DOM styling escape hatch
|
|
59376
59439
|
*/
|
|
59377
59440
|
let PageMenuComponent = class PageMenuComponent {
|
|
@@ -72999,8 +73062,7 @@ const SPLIT_DEFAULT_PROPS = new InjectionToken('MOSAIK_SPLIT_DEFAULT_PROPS');
|
|
|
72999
73062
|
/**
|
|
73000
73063
|
* @public
|
|
73001
73064
|
*
|
|
73002
|
-
* @slot
|
|
73003
|
-
* @slot end - The secondary content panel positioned at the end of the split
|
|
73065
|
+
* @slot - ${e.reverse ? 'end' : 'start'} - The ${e.reverse ? 'end' : 'start'} slot.
|
|
73004
73066
|
* @slot thumb - Custom grip icon for the draggable divider (defaults to three dots icon)
|
|
73005
73067
|
* @slot style - Custom styles injection slot for shadow DOM styling escape hatch
|
|
73006
73068
|
*/
|
|
@@ -74160,6 +74222,10 @@ let SuccessStateComponent = class SuccessStateComponent {
|
|
|
74160
74222
|
if (themeNameValue !== undefined) {
|
|
74161
74223
|
this._element.themeName = themeNameValue;
|
|
74162
74224
|
}
|
|
74225
|
+
const contentValue = this.content();
|
|
74226
|
+
if (contentValue !== undefined) {
|
|
74227
|
+
this._element.content = contentValue;
|
|
74228
|
+
}
|
|
74163
74229
|
const formatterValue = this.formatter();
|
|
74164
74230
|
if (formatterValue !== undefined) {
|
|
74165
74231
|
this._element.formatter = formatterValue;
|
|
@@ -74341,6 +74407,10 @@ let SummaryComponent = class SummaryComponent {
|
|
|
74341
74407
|
if (headerValue !== undefined) {
|
|
74342
74408
|
this._element.header = headerValue;
|
|
74343
74409
|
}
|
|
74410
|
+
const contentValue = this.content();
|
|
74411
|
+
if (contentValue !== undefined) {
|
|
74412
|
+
this._element.content = contentValue;
|
|
74413
|
+
}
|
|
74344
74414
|
const themeNameValue = this.themeName();
|
|
74345
74415
|
if (themeNameValue !== undefined) {
|
|
74346
74416
|
this._element.themeName = themeNameValue;
|
|
@@ -80054,6 +80124,7 @@ const TILE_LIST_ITEM_DEFAULT_PROPS = new InjectionToken('MOSAIK_TILE_LIST_ITEM_D
|
|
|
80054
80124
|
/**
|
|
80055
80125
|
* @public
|
|
80056
80126
|
*
|
|
80127
|
+
* @slot - The default slot.
|
|
80057
80128
|
* @slot style - Custom styles injection slot for shadow DOM styling escape hatch
|
|
80058
80129
|
*/
|
|
80059
80130
|
let TileListItemComponent = class TileListItemComponent {
|
|
@@ -80285,6 +80356,7 @@ const TILE_LIST_DEFAULT_PROPS = new InjectionToken('MOSAIK_TILE_LIST_DEFAULT_PRO
|
|
|
80285
80356
|
/**
|
|
80286
80357
|
* @public
|
|
80287
80358
|
*
|
|
80359
|
+
* @slot - The default slot.
|
|
80288
80360
|
* @slot style - Custom styles injection slot for shadow DOM styling escape hatch
|
|
80289
80361
|
*/
|
|
80290
80362
|
let TileListComponent = class TileListComponent {
|
|
@@ -80487,13 +80559,13 @@ const TILE_MANAGER_TILE_DEFAULT_PROPS = new InjectionToken('MOSAIK_TILE_MANAGER_
|
|
|
80487
80559
|
* @public
|
|
80488
80560
|
*
|
|
80489
80561
|
* @slot - Default slot for the tile's content.
|
|
80490
|
-
* @slot title - Renders the title of the tile header.
|
|
80491
|
-
* @slot maximize-action - Renders the maximize action element of the tile header.
|
|
80492
|
-
* @slot fullscreen-action - Renders the fullscreen action element of the tile header.
|
|
80493
80562
|
* @slot actions - Renders items after the default actions in the tile header.
|
|
80494
|
-
* @slot side-adorner - Renders the side resize handle of the tile.
|
|
80495
|
-
* @slot corner-adorner - Renders the corner resize handle of the tile.
|
|
80496
80563
|
* @slot bottom-adorner - Renders the bottom resize handle of the tile.
|
|
80564
|
+
* @slot corner-adorner - Renders the corner resize handle of the tile.
|
|
80565
|
+
* @slot fullscreen-action - Renders the fullscreen action element of the tile header.
|
|
80566
|
+
* @slot maximize-action - Renders the maximize action element of the tile header.
|
|
80567
|
+
* @slot side-adorner - Renders the side resize handle of the tile.
|
|
80568
|
+
* @slot title - Renders the title of the tile header.
|
|
80497
80569
|
* @slot style - Custom styles injection slot for shadow DOM styling escape hatch
|
|
80498
80570
|
*/
|
|
80499
80571
|
let TileManagerTileComponent = class TileManagerTileComponent {
|
|
@@ -84007,6 +84079,10 @@ let ToggleTipComponent = class ToggleTipComponent {
|
|
|
84007
84079
|
*/
|
|
84008
84080
|
initInputSyncEffect() {
|
|
84009
84081
|
effect(() => {
|
|
84082
|
+
const contentValue = this.content();
|
|
84083
|
+
if (contentValue !== undefined) {
|
|
84084
|
+
this._element.content = contentValue;
|
|
84085
|
+
}
|
|
84010
84086
|
const placementValue = this.placement();
|
|
84011
84087
|
if (placementValue !== undefined) {
|
|
84012
84088
|
this._element.placement = placementValue;
|
|
@@ -84604,6 +84680,10 @@ let TooltipComponent = class TooltipComponent {
|
|
|
84604
84680
|
if (isFloatingActiveValue !== undefined) {
|
|
84605
84681
|
this._element.isFloatingActive = isFloatingActiveValue;
|
|
84606
84682
|
}
|
|
84683
|
+
const contentValue = this.content();
|
|
84684
|
+
if (contentValue !== undefined) {
|
|
84685
|
+
this._element.content = contentValue;
|
|
84686
|
+
}
|
|
84607
84687
|
const placementValue = this.placement();
|
|
84608
84688
|
if (placementValue !== undefined) {
|
|
84609
84689
|
this._element.placement = placementValue;
|