@umbraco-cms/backoffice 1.0.0-next.c1172939 → 1.0.0-next.fc037c85

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/router.d.ts ADDED
@@ -0,0 +1,130 @@
1
+ import { UmbContextToken } from './context-api';
2
+ import { UmbControllerHostInterface } from './controller';
3
+ import { UmbModalRouteRegistration } from './modal';
4
+
5
+ interface UmbRouteLocation {
6
+ name?: string;
7
+ params: {
8
+ [key: string]: string;
9
+ };
10
+ }
11
+
12
+ declare class UmbRouteContext {
13
+ #private;
14
+ private _onGotModals;
15
+ constructor(host: UmbControllerHostInterface, _onGotModals: (contextRoutes: any) => void);
16
+ registerModal(registration: UmbModalRouteRegistration): UmbModalRouteRegistration<object, any>;
17
+ unregisterModal(registrationToken: ReturnType<typeof this$1.registerModal>): void;
18
+ _internal_routerGotBasePath(routerBasePath: string): void;
19
+ _internal_modalRouterChanged(activeModalPath: string | undefined): void;
20
+ }
21
+ declare const UMB_ROUTE_CONTEXT_TOKEN: UmbContextToken<UmbRouteContext>;
22
+
23
+ interface IRouterSlot<D = any, P = any> extends HTMLElement {
24
+ readonly route: IRoute<D> | null;
25
+ readonly isRoot: boolean;
26
+ readonly fragments: IPathFragments | null;
27
+ readonly params: Params | null;
28
+ readonly match: IRouteMatch<D> | null;
29
+ routes: IRoute<D>[];
30
+ add: ((routes: IRoute<D>[], navigate?: boolean) => void);
31
+ clear: (() => void);
32
+ render: (() => Promise<void>);
33
+ constructAbsolutePath: ((path: PathFragment) => string);
34
+ parent: IRouterSlot<P> | null | undefined;
35
+ queryParentRouterSlot: (() => IRouterSlot<P> | null);
36
+ }
37
+ type IRoutingInfo<D = any, P = any> = {
38
+ slot: IRouterSlot<D, P>;
39
+ match: IRouteMatch<D>;
40
+ };
41
+ type CustomResolver<D = any, P = any> = ((info: IRoutingInfo<D>) => boolean | void | Promise<boolean> | Promise<void>);
42
+ type Guard<D = any, P = any> = ((info: IRoutingInfo<D, P>) => boolean | Promise<boolean>);
43
+ type PageComponent = HTMLElement;
44
+ type ModuleResolver = Promise<{
45
+ default: any;
46
+ }>;
47
+ type Class<T extends PageComponent = PageComponent> = {
48
+ new (...args: any[]): T;
49
+ };
50
+ type Setup<D = any> = ((component: PageComponent, info: IRoutingInfo<D>) => void);
51
+ type PathMatch = "prefix" | "suffix" | "full" | "fuzzy";
52
+ /**
53
+ * The base route interface.
54
+ * D = the data type of the data
55
+ */
56
+ interface IRouteBase<D = any> {
57
+ path: PathFragment;
58
+ data?: D;
59
+ guards?: Guard[];
60
+ pathMatch?: PathMatch;
61
+ }
62
+ /**
63
+ * Route type used for redirection.
64
+ */
65
+ interface IRedirectRoute<D = any> extends IRouteBase<D> {
66
+ redirectTo: string;
67
+ preserveQuery?: boolean;
68
+ }
69
+ /**
70
+ * Route type used to resolve and stamp components.
71
+ */
72
+ interface IComponentRoute<D = any> extends IRouteBase<D> {
73
+ component: Class | ModuleResolver | PageComponent | (() => Class) | (() => PageComponent) | (() => ModuleResolver);
74
+ setup?: Setup;
75
+ }
76
+ /**
77
+ * Route type used to take control of how the route should resolve.
78
+ */
79
+ interface IResolverRoute<D = any> extends IRouteBase<D> {
80
+ resolve: CustomResolver;
81
+ }
82
+ type IRoute<D = any> = IRedirectRoute<D> | IComponentRoute<D> | IResolverRoute<D>;
83
+ type PathFragment = string;
84
+ type IPathFragments = {
85
+ consumed: PathFragment;
86
+ rest: PathFragment;
87
+ };
88
+ interface IRouteMatch<D = any> {
89
+ route: IRoute<D>;
90
+ params: Params;
91
+ fragments: IPathFragments;
92
+ match: RegExpMatchArray;
93
+ }
94
+ type PushStateEvent = CustomEvent<null>;
95
+ type ReplaceStateEvent = CustomEvent<null>;
96
+ type ChangeStateEvent = CustomEvent<null>;
97
+ type WillChangeStateEvent = CustomEvent<{
98
+ url?: string | null;
99
+ eventName: GlobalRouterEvent;
100
+ }>;
101
+ type NavigationStartEvent<D = any> = CustomEvent<IRoutingInfo<D>>;
102
+ type NavigationSuccessEvent<D = any> = CustomEvent<IRoutingInfo<D>>;
103
+ type NavigationCancelEvent<D = any> = CustomEvent<IRoutingInfo<D>>;
104
+ type NavigationErrorEvent<D = any> = CustomEvent<IRoutingInfo<D>>;
105
+ type NavigationEndEvent<D = any> = CustomEvent<IRoutingInfo<D>>;
106
+ type Params = {
107
+ [key: string]: string;
108
+ };
109
+ /**
110
+ * History related events.
111
+ */
112
+ type GlobalRouterEvent = "pushstate" | "replacestate" | "popstate" | "changestate" | "willchangestate" | "navigationstart" | "navigationcancel" | "navigationerror" | "navigationsuccess" | "navigationend";
113
+ declare global {
114
+ interface GlobalEventHandlersEventMap {
115
+ "pushstate": PushStateEvent;
116
+ "replacestate": ReplaceStateEvent;
117
+ "popstate": PopStateEvent;
118
+ "changestate": ChangeStateEvent;
119
+ "navigationstart": NavigationStartEvent;
120
+ "navigationend": NavigationEndEvent;
121
+ "navigationsuccess": NavigationSuccessEvent;
122
+ "navigationcancel": NavigationCancelEvent;
123
+ "navigationerror": NavigationErrorEvent;
124
+ "willchangestate": WillChangeStateEvent;
125
+ }
126
+ }
127
+
128
+ type UmbRoute = IRoute;
129
+
130
+ export { UMB_ROUTE_CONTEXT_TOKEN, UmbRoute, UmbRouteContext, UmbRouteLocation };
@@ -62,6 +62,21 @@
62
62
  },
63
63
  {
64
64
  "name": "umb-workspace-view-document-type-design",
65
+ "description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_documentType` - \n\n * `_workspaceContext` - \n\n * `_tabs` {`any[]`} - ",
66
+ "attributes": []
67
+ },
68
+ {
69
+ "name": "umb-workspace-view-document-type-listview",
70
+ "description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_documentType` - \n\n * `_workspaceContext` - ",
71
+ "attributes": []
72
+ },
73
+ {
74
+ "name": "umb-workspace-view-document-type-permissions",
75
+ "description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_documentType` - \n\n * `_workspaceContext` - ",
76
+ "attributes": []
77
+ },
78
+ {
79
+ "name": "umb-workspace-view-document-type-templates",
65
80
  "description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_documentType` - \n\n * `_workspaceContext` - ",
66
81
  "attributes": []
67
82
  },
@@ -89,6 +104,11 @@
89
104
  "description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_selection` {`string[]`} - \n\n * `_multiple` {`boolean`} - ",
90
105
  "attributes": []
91
106
  },
107
+ {
108
+ "name": "umb-document-type-picker-modal",
109
+ "description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_selection` {`string[]`} - \n\n * `_multiple` {`boolean`} - ",
110
+ "attributes": []
111
+ },
92
112
  {
93
113
  "name": "umb-document-tree-item",
94
114
  "description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_item` - \n\n * `item` - ",
@@ -347,7 +367,7 @@
347
367
  },
348
368
  {
349
369
  "name": "umb-examine-fields-settings-modal",
350
- "description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_fields` {`UmbExamineFieldsSettingsModalData | undefined`} - ",
370
+ "description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_fields` - ",
351
371
  "attributes": []
352
372
  },
353
373
  {
@@ -1199,6 +1219,24 @@
1199
1219
  }
1200
1220
  ]
1201
1221
  },
1222
+ {
1223
+ "name": "umb-input-document-type-picker",
1224
+ "description": "Events:\n\n * `change` {`CustomEvent<unknown>`} - \n\nAttributes:\n\n * `currentDocumentType` - \n\n * `value` {`string`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_selectedKeys` {`string[]`} - \n\n * `selectedKeys` {`string[]`} - \n\n * `currentDocumentType` - \n\n * `_items` {`any[] | undefined`} - \n\n * `_modalContext` - \n\n * `_documentTypeStore` - \n\n * `_pickedItemsObserver` - \n\n * `formAssociated` {`boolean`} - \n\n * `value` {`string`} - \n\n * `name` {`string`} - \n\n * `validationMessage` {`string`} - \n\n * `validity` {`ValidityState`} - \n\n * `_value` {`FormDataEntryValue | FormData`} - \n\n * `_internals` - \n\n * `addValidator` - \n\n * `pristine` {`boolean`} - \n\n * `required` {`boolean`} - \n\n * `requiredMessage` {`string`} - \n\n * `error` {`boolean`} - \n\n * `errorMessage` {`string`} - ",
1225
+ "attributes": [
1226
+ {
1227
+ "name": "currentDocumentType",
1228
+ "description": "`currentDocumentType` - \n\nProperty: currentDocumentType"
1229
+ },
1230
+ {
1231
+ "name": "value",
1232
+ "description": "`value` {`string`} - \n\nProperty: value"
1233
+ },
1234
+ {
1235
+ "name": "onchange",
1236
+ "description": "`change` {`CustomEvent<unknown>`} - "
1237
+ }
1238
+ ]
1239
+ },
1202
1240
  {
1203
1241
  "name": "umb-input-eye-dropper",
1204
1242
  "description": "Events:\n\n * `change` {`CustomEvent<unknown>`} - \n\nAttributes:\n\n * `opacity` {`boolean`} - \n\n * `swatches` {`string[]`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `opacity` {`boolean`} - \n\n * `swatches` {`string[]`} - \n\n * `formAssociated` {`boolean`} - \n\n * `value` {`FormDataEntryValue | FormData`} - \n\n * `name` {`string`} - \n\n * `validationMessage` {`string`} - \n\n * `validity` {`ValidityState`} - \n\n * `_value` {`FormDataEntryValue | FormData`} - \n\n * `_internals` - \n\n * `addValidator` - \n\n * `pristine` {`boolean`} - \n\n * `required` {`boolean`} - \n\n * `requiredMessage` {`string`} - \n\n * `error` {`boolean`} - \n\n * `errorMessage` {`string`} - ",
@@ -1280,8 +1318,18 @@
1280
1318
  },
1281
1319
  {
1282
1320
  "name": "umb-input-multi-url-picker",
1283
- "description": "Events:\n\n * `change` {`CustomEvent<unknown>`} - when the value of the input changes\n\n * `blur` {} - when the input loses focus\n\n * `focus` {} - when the input gains focus\n\nAttributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `min-message` {boolean} - Min validation message.\n\n * `maxMessage` {boolean} - Max validation message.\n\n * `hide-anchor` {`boolean | undefined`} - \n\n * `ignoreUserStartNodes` {`boolean | undefined`} - \n\n * `overlaySize` {UUIModalSidebarSize} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `minMessage` {boolean} - Min validation message.\n\n * `maxMessage` {boolean} - Max validation message.\n\n * `hideAnchor` {`boolean | undefined`} - \n\n * `ignoreUserStartNodes` {`boolean | undefined`} - \n\n * `overlaySize` {UUIModalSidebarSize} - \n\n * `urls` {Array<UmbLinkPickerLink>} - \n\n * `_urls` {`UmbLinkPickerLink[]`} - \n\n * `_modalContext` - \n\n * `formAssociated` {`boolean`} - \n\n * `value` {`FormDataEntryValue | FormData`} - \n\n * `name` {`string`} - \n\n * `validationMessage` {`string`} - \n\n * `validity` {`ValidityState`} - \n\n * `_value` {`FormDataEntryValue | FormData`} - \n\n * `_internals` - \n\n * `addValidator` - \n\n * `pristine` {`boolean`} - \n\n * `required` {`boolean`} - \n\n * `requiredMessage` {`string`} - \n\n * `error` {`boolean`} - \n\n * `errorMessage` {`string`} - ",
1321
+ "description": "Events:\n\n * `change` {`CustomEvent<unknown>`} - when the value of the input changes\n\n * `blur` {} - when the input loses focus\n\n * `focus` {} - when the input gains focus\n\nAttributes:\n\n * `alias` {`string | undefined`} - \n\n * `variantId` - \n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `min-message` {boolean} - Min validation message.\n\n * `maxMessage` {boolean} - Max validation message.\n\n * `hide-anchor` {`boolean | undefined`} - \n\n * `ignoreUserStartNodes` {`boolean | undefined`} - \n\n * `overlaySize` {UUIModalSidebarSize} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `alias` {`string | undefined`} - \n\n * `variantId` - \n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `minMessage` {boolean} - Min validation message.\n\n * `maxMessage` {boolean} - Max validation message.\n\n * `hideAnchor` {`boolean | undefined`} - \n\n * `ignoreUserStartNodes` {`boolean | undefined`} - \n\n * `overlaySize` {UUIModalSidebarSize} - \n\n * `urls` {Array<UmbLinkPickerLink>} - \n\n * `_urls` {`any[]`} - \n\n * `_modalRoute` - \n\n * `myModalRegistration` - \n\n * `formAssociated` {`boolean`} - \n\n * `value` {`FormDataEntryValue | FormData`} - \n\n * `name` {`string`} - \n\n * `validationMessage` {`string`} - \n\n * `validity` {`ValidityState`} - \n\n * `_value` {`FormDataEntryValue | FormData`} - \n\n * `_internals` - \n\n * `addValidator` - \n\n * `pristine` {`boolean`} - \n\n * `required` {`boolean`} - \n\n * `requiredMessage` {`string`} - \n\n * `error` {`boolean`} - \n\n * `errorMessage` {`string`} - ",
1284
1322
  "attributes": [
1323
+ {
1324
+ "name": "alias",
1325
+ "description": "`alias` {`string | undefined`} - \n\nProperty: alias",
1326
+ "values": []
1327
+ },
1328
+ {
1329
+ "name": "variantId",
1330
+ "description": "`variantId` - \n\nProperty: variantId",
1331
+ "values": []
1332
+ },
1285
1333
  {
1286
1334
  "name": "min",
1287
1335
  "description": "`min` {number} - This is a minimum amount of selected items in this input.\n\nProperty: min\n\nDefault: undefined",
@@ -1468,6 +1516,46 @@
1468
1516
  }
1469
1517
  ]
1470
1518
  },
1519
+ {
1520
+ "name": "umb-input-template-picker",
1521
+ "description": "Events:\n\n * `change-default` {`CustomEvent<unknown>`} - \n\n * `change-allowed` {`CustomEvent<unknown>`} - \n\nAttributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `min-message` {boolean} - Min validation message.\n\n * `maxMessage` {boolean} - Max validation message.\n\n * `allowedKeys` {`string[]`} - \n\n * `defaultKey` {`string`} - \n\nProperties:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `minMessage` {boolean} - Min validation message.\n\n * `maxMessage` {boolean} - Max validation message.\n\n * `_allowedKeys` {`string[]`} - \n\n * `allowedKeys` {`string[]`} - \n\n * `_defaultKey` {`string`} - \n\n * `defaultKey` {`string`} - \n\n * `_modalContext` - \n\n * `_templateRepository` - \n\n * `_pickedTemplates` {`any[]`} - \n\n * `styles` {`CSSResult[]`} - \n\n * `formAssociated` {`boolean`} - \n\n * `value` {`FormDataEntryValue | FormData`} - \n\n * `name` {`string`} - \n\n * `validationMessage` {`string`} - \n\n * `validity` {`ValidityState`} - \n\n * `_value` {`FormDataEntryValue | FormData`} - \n\n * `_internals` - \n\n * `addValidator` - \n\n * `pristine` {`boolean`} - \n\n * `required` {`boolean`} - \n\n * `requiredMessage` {`string`} - \n\n * `error` {`boolean`} - \n\n * `errorMessage` {`string`} - ",
1522
+ "attributes": [
1523
+ {
1524
+ "name": "min",
1525
+ "description": "`min` {number} - This is a minimum amount of selected items in this input.\n\nProperty: min\n\nDefault: undefined",
1526
+ "values": []
1527
+ },
1528
+ {
1529
+ "name": "max",
1530
+ "description": "`max` {number} - This is a maximum amount of selected items in this input.\n\nProperty: max\n\nDefault: undefined",
1531
+ "values": []
1532
+ },
1533
+ {
1534
+ "name": "min-message",
1535
+ "description": "`min-message` {boolean} - Min validation message.\n\nProperty: minMessage\n\nDefault: "
1536
+ },
1537
+ {
1538
+ "name": "maxMessage",
1539
+ "description": "`maxMessage` {boolean} - Max validation message.\n\nProperty: maxMessage\n\nDefault: "
1540
+ },
1541
+ {
1542
+ "name": "allowedKeys",
1543
+ "description": "`allowedKeys` {`string[]`} - \n\nProperty: allowedKeys"
1544
+ },
1545
+ {
1546
+ "name": "defaultKey",
1547
+ "description": "`defaultKey` {`string`} - \n\nProperty: defaultKey"
1548
+ },
1549
+ {
1550
+ "name": "onchange-default",
1551
+ "description": "`change-default` {`CustomEvent<unknown>`} - "
1552
+ },
1553
+ {
1554
+ "name": "onchange-allowed",
1555
+ "description": "`change-allowed` {`CustomEvent<unknown>`} - "
1556
+ }
1557
+ ]
1558
+ },
1471
1559
  {
1472
1560
  "name": "umb-input-toggle",
1473
1561
  "description": "Events:\n\n * `change` {`CustomEvent<unknown>`} - \n\nAttributes:\n\n * `checked` {`boolean`} - \n\n * `showLabels` {`boolean`} - \n\n * `labelOn` {`string | undefined`} - \n\n * `labelOff` {`string | undefined`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_checked` {`boolean`} - \n\n * `checked` {`boolean`} - \n\n * `showLabels` {`boolean`} - \n\n * `labelOn` {`string | undefined`} - \n\n * `labelOff` {`string | undefined`} - \n\n * `_currentLabel` {`string | undefined`} - \n\n * `formAssociated` {`boolean`} - \n\n * `value` {`FormDataEntryValue | FormData`} - \n\n * `name` {`string`} - \n\n * `validationMessage` {`string`} - \n\n * `validity` {`ValidityState`} - \n\n * `_value` {`FormDataEntryValue | FormData`} - \n\n * `_internals` - \n\n * `addValidator` - \n\n * `pristine` {`boolean`} - \n\n * `required` {`boolean`} - \n\n * `requiredMessage` {`string`} - \n\n * `error` {`boolean`} - \n\n * `errorMessage` {`string`} - ",
@@ -1714,6 +1802,37 @@
1714
1802
  }
1715
1803
  ]
1716
1804
  },
1805
+ {
1806
+ "name": "umb-template-card",
1807
+ "description": "Events:\n\n * `open` {`CustomEvent<unknown>`} - \n\n * `selected` {} - \n\n * `change-default` {`CustomEvent<unknown>`} - \n\nSlots:\n\n * `actions` {} - \n\nAttributes:\n\n * `default` {`boolean`} - \n\n * `key` {`string`} - \n\n * `name` {`string`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `default` {`boolean`} - \n\n * `_key` {`string`} - \n\n * `key` {`string`} - \n\n * `formAssociated` {`boolean`} - \n\n * `value` {`FormDataEntryValue | FormData`} - \n\n * `name` {`string`} - \n\n * `validationMessage` {`string`} - \n\n * `validity` {`ValidityState`} - \n\n * `_value` {`FormDataEntryValue | FormData`} - \n\n * `_internals` - \n\n * `addValidator` - \n\n * `pristine` {`boolean`} - \n\n * `required` {`boolean`} - \n\n * `requiredMessage` {`string`} - \n\n * `error` {`boolean`} - \n\n * `errorMessage` {`string`} - ",
1808
+ "attributes": [
1809
+ {
1810
+ "name": "default",
1811
+ "description": "`default` {`boolean`} - \n\nProperty: default\n\nDefault: false",
1812
+ "valueSet": "v"
1813
+ },
1814
+ {
1815
+ "name": "key",
1816
+ "description": "`key` {`string`} - \n\nProperty: key"
1817
+ },
1818
+ {
1819
+ "name": "name",
1820
+ "description": "`name` {`string`} - \n\nProperty: name\n\nDefault: "
1821
+ },
1822
+ {
1823
+ "name": "onopen",
1824
+ "description": "`open` {`CustomEvent<unknown>`} - "
1825
+ },
1826
+ {
1827
+ "name": "onselected",
1828
+ "description": "`selected` {} - "
1829
+ },
1830
+ {
1831
+ "name": "onchange-default",
1832
+ "description": "`change-default` {`CustomEvent<unknown>`} - "
1833
+ }
1834
+ ]
1835
+ },
1717
1836
  {
1718
1837
  "name": "umb-tooltip-menu",
1719
1838
  "description": "Attributes:\n\n * `icon-only` {`boolean`} - \n\n * `items` {`TooltipMenuItem[]`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `iconOnly` {`boolean`} - \n\n * `items` {`TooltipMenuItem[]`} - ",
@@ -1945,23 +2064,21 @@
1945
2064
  },
1946
2065
  {
1947
2066
  "name": "umb-confirm-modal",
1948
- "description": "Attributes:\n\n * `data` {`UmbConfirmModalData | undefined`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `modalHandler` - \n\n * `data` {`UmbConfirmModalData | undefined`} - ",
2067
+ "description": "Attributes:\n\n * `data` - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `modalHandler` - \n\n * `data` - ",
1949
2068
  "attributes": [
1950
2069
  {
1951
2070
  "name": "data",
1952
- "description": "`data` {`UmbConfirmModalData | undefined`} - \n\nProperty: data",
1953
- "values": []
2071
+ "description": "`data` - \n\nProperty: data"
1954
2072
  }
1955
2073
  ]
1956
2074
  },
1957
2075
  {
1958
2076
  "name": "umb-embedded-media-modal",
1959
- "description": "Attributes:\n\n * `data` {`UmbEmbeddedMediaModalData | undefined`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `modalHandler` - \n\n * `data` {`UmbEmbeddedMediaModalData | undefined`} - \n\n * `_model` {`UmbEmbeddedMediaModalModel`} - ",
2077
+ "description": "Attributes:\n\n * `data` - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `modalHandler` - \n\n * `data` - \n\n * `_model` {`UmbEmbeddedMediaModalModel`} - ",
1960
2078
  "attributes": [
1961
2079
  {
1962
2080
  "name": "data",
1963
- "description": "`data` {`UmbEmbeddedMediaModalData | undefined`} - \n\nProperty: data",
1964
- "values": []
2081
+ "description": "`data` - \n\nProperty: data"
1965
2082
  }
1966
2083
  ]
1967
2084
  },
@@ -1985,7 +2102,7 @@
1985
2102
  },
1986
2103
  {
1987
2104
  "name": "umb-link-picker-modal",
1988
- "description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_selectedKey` {`string | undefined`} - \n\n * `_link` {`UmbLinkPickerLink`} - \n\n * `_layout` {`UmbLinkPickerConfig`} - \n\n * `_linkInput` - \n\n * `_linkQueryInput` - \n\n * `_linkTitleInput` - ",
2105
+ "description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_selectedKey` {`string | undefined`} - \n\n * `_index` {`number | null`} - \n\n * `_link` - \n\n * `_layout` - \n\n * `_linkInput` - \n\n * `_linkQueryInput` - \n\n * `_linkTitleInput` - ",
1989
2106
  "attributes": []
1990
2107
  },
1991
2108
  {
@@ -1998,6 +2115,16 @@
1998
2115
  "description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_sections` {`any[]`} - ",
1999
2116
  "attributes": []
2000
2117
  },
2118
+ {
2119
+ "name": "umb-template-picker-modal",
2120
+ "description": "Properties:\n\n * `_selection` {`string[]`} - \n\n * `_multiple` {`boolean`} - \n\n * `styles` {`CSSResult[]`} - ",
2121
+ "attributes": []
2122
+ },
2123
+ {
2124
+ "name": "umb-template-modal",
2125
+ "description": "Properties:\n\n * `_key` {`string`} - \n\n * `_template` - \n\n * `_codeEditor` - \n\n * `styles` {`CSSResult[]`} - ",
2126
+ "attributes": []
2127
+ },
2001
2128
  {
2002
2129
  "name": "umb-property-action-clear",
2003
2130
  "description": "Events:\n\n * `close` {`CustomEvent<unknown>`} - \n\nAttributes:\n\n * `value` {`string`} - \n\nProperties:\n\n * `_propertyContext` - \n\n * `value` {`string`} - ",
@@ -2063,12 +2190,11 @@
2063
2190
  },
2064
2191
  {
2065
2192
  "name": "umb-property-editor-ui-picker-modal",
2066
- "description": "Attributes:\n\n * `data` {`UmbPropertyEditorUIPickerModalData | undefined`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `data` {`UmbPropertyEditorUIPickerModalData | undefined`} - \n\n * `_groupedPropertyEditorUIs` {`GroupedPropertyEditorUIs`} - \n\n * `_propertyEditorUIs` {`any[]`} - \n\n * `_selection` {`string[]`} - \n\n * `_submitLabel` {`string`} - \n\n * `modalHandler` - ",
2193
+ "description": "Attributes:\n\n * `data` - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `data` - \n\n * `_groupedPropertyEditorUIs` {`GroupedPropertyEditorUIs`} - \n\n * `_propertyEditorUIs` {`any[]`} - \n\n * `_selection` {`string[]`} - \n\n * `_submitLabel` {`string`} - \n\n * `modalHandler` - ",
2067
2194
  "attributes": [
2068
2195
  {
2069
2196
  "name": "data",
2070
- "description": "`data` {`UmbPropertyEditorUIPickerModalData | undefined`} - \n\nProperty: data",
2071
- "values": []
2197
+ "description": "`data` - \n\nProperty: data"
2072
2198
  }
2073
2199
  ]
2074
2200
  },
@@ -2373,11 +2499,11 @@
2373
2499
  },
2374
2500
  {
2375
2501
  "name": "umb-property-editor-ui-multi-url-picker",
2376
- "description": "Events:\n\n * `property-value-change` {`CustomEvent<unknown>`} - \n\nAttributes:\n\n * `value` {`UmbLinkPickerLink[]`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `value` {`UmbLinkPickerLink[]`} - \n\n * `config` {`any[]`} - \n\n * `_overlaySize` {`UUIModalSidebarSize | undefined`} - \n\n * `_hideAnchor` {`boolean | undefined`} - \n\n * `_ignoreUserStartNodes` {`boolean | undefined`} - \n\n * `_maxNumber` {`number | undefined`} - \n\n * `_minNumber` {`number | undefined`} - ",
2502
+ "description": "Events:\n\n * `property-value-change` {`CustomEvent<unknown>`} - \n\nAttributes:\n\n * `value` {`any[]`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `value` {`any[]`} - \n\n * `config` {`any[]`} - \n\n * `_overlaySize` {`UUIModalSidebarSize | undefined`} - \n\n * `_hideAnchor` {`boolean | undefined`} - \n\n * `_ignoreUserStartNodes` {`boolean | undefined`} - \n\n * `_maxNumber` {`number | undefined`} - \n\n * `_minNumber` {`number | undefined`} - \n\n * `_alias` {`string | undefined`} - \n\n * `_propertyVariantId` {`string | undefined`} - ",
2377
2503
  "attributes": [
2378
2504
  {
2379
2505
  "name": "value",
2380
- "description": "`value` {`UmbLinkPickerLink[]`} - \n\nProperty: value\n\nDefault: "
2506
+ "description": "`value` {`any[]`} - \n\nProperty: value\n\nDefault: "
2381
2507
  },
2382
2508
  {
2383
2509
  "name": "onproperty-value-change",
@@ -2704,12 +2830,12 @@
2704
2830
  "attributes": []
2705
2831
  },
2706
2832
  {
2707
- "name": "umb-export-dictionary-modal-layout",
2833
+ "name": "umb-export-dictionary-modal",
2708
2834
  "description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_form` {`HTMLFormElement`} - ",
2709
2835
  "attributes": []
2710
2836
  },
2711
2837
  {
2712
- "name": "umb-import-dictionary-modal-layout",
2838
+ "name": "umb-import-dictionary-modal",
2713
2839
  "description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_form` {`HTMLFormElement`} - \n\n * `_uploadedDictionary` - \n\n * `_showUploadView` {`boolean`} - \n\n * `_showImportView` {`boolean`} - \n\n * `_showErrorView` {`boolean`} - \n\n * `_selection` {`string[]`} - ",
2714
2840
  "attributes": []
2715
2841
  },
@@ -2739,12 +2865,11 @@
2739
2865
  },
2740
2866
  {
2741
2867
  "name": "umb-change-password-modal",
2742
- "description": "Attributes:\n\n * `data` {`UmbChangePasswordModalData | undefined`} - \n\nProperties:\n\n * `styles` - \n\n * `modalHandler` - \n\n * `data` {`UmbChangePasswordModalData | undefined`} - ",
2868
+ "description": "Attributes:\n\n * `data` - \n\nProperties:\n\n * `styles` - \n\n * `modalHandler` - \n\n * `data` - ",
2743
2869
  "attributes": [
2744
2870
  {
2745
2871
  "name": "data",
2746
- "description": "`data` {`UmbChangePasswordModalData | undefined`} - \n\nProperty: data",
2747
- "values": []
2872
+ "description": "`data` - \n\nProperty: data"
2748
2873
  }
2749
2874
  ]
2750
2875
  },
@@ -2918,11 +3043,34 @@
2918
3043
  },
2919
3044
  {
2920
3045
  "name": "umb-router-slot",
2921
- "description": "Events:\n\n * `init` - fires when the router is connected\n\n * `change` - fires when a path of this router is changed\n\nAttributes:\n\n * `routes` {`IRoute<any>[] | undefined`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `routes` {`IRoute<any>[] | undefined`} - \n\n * `_routerPath` {`string | undefined`} - \n\n * `absoluteRouterPath` {`string | undefined`} - \n\n * `_activeLocalPath` {`string | undefined`} - \n\n * `localActiveViewPath` {`string | undefined`} - \n\n * `absoluteActiveViewPath` {`string`} - \n\n * `_onChangeState` - \n\n * `_onNavigationChanged` - ",
3046
+ "description": "Events:\n\n * `init` - fires when the router is connected\n\n * `change` - fires when a path of this router is changed\n\nAttributes:\n\n * `routes` {`any[] | undefined`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `routes` {`any[] | undefined`} - \n\n * `_routerPath` {`string | undefined`} - \n\n * `absoluteRouterPath` {`string | undefined`} - \n\n * `_activeLocalPath` {`string | undefined`} - \n\n * `localActiveViewPath` {`string | undefined`} - \n\n * `absoluteActiveViewPath` {`string`} - \n\n * `_onNavigationChanged` - ",
3047
+ "attributes": [
3048
+ {
3049
+ "name": "routes",
3050
+ "description": "`routes` {`any[] | undefined`} - \n\nProperty: routes",
3051
+ "values": []
3052
+ },
3053
+ {
3054
+ "name": "oninit",
3055
+ "description": "`init` - fires when the router is connected"
3056
+ },
3057
+ {
3058
+ "name": "onchange",
3059
+ "description": "`change` - fires when a path of this router is changed"
3060
+ }
3061
+ ]
3062
+ },
3063
+ {
3064
+ "name": "umb-variant-router-slot",
3065
+ "description": "Events:\n\n * `init` - fires when the router is connected\n\n * `change` - fires when a path of this router is changed\n\nAttributes:\n\n * `variantId` {`UmbVariantId[]`} - \n\n * `routes` {`any[] | undefined`} - \n\nProperties:\n\n * `_routes` {`any[] | undefined`} - \n\n * `variantId` {`UmbVariantId[]`} - \n\n * `styles` {`CSSResult[]`} - \n\n * `routes` {`any[] | undefined`} - \n\n * `_routerPath` {`string | undefined`} - \n\n * `absoluteRouterPath` {`string | undefined`} - \n\n * `_activeLocalPath` {`string | undefined`} - \n\n * `localActiveViewPath` {`string | undefined`} - \n\n * `absoluteActiveViewPath` {`string`} - \n\n * `_onNavigationChanged` - ",
2922
3066
  "attributes": [
3067
+ {
3068
+ "name": "variantId",
3069
+ "description": "`variantId` {`UmbVariantId[]`} - \n\nProperty: variantId"
3070
+ },
2923
3071
  {
2924
3072
  "name": "routes",
2925
- "description": "`routes` {`IRoute<any>[] | undefined`} - \n\nProperty: routes",
3073
+ "description": "`routes` {`any[] | undefined`} - \n\nProperty: routes",
2926
3074
  "values": []
2927
3075
  },
2928
3076
  {