@omnia/fx 8.0.55-vnext → 8.0.57-vnext
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/internal-do-not-import-from-here/shared/models/OmniaSharedBootstrapData.d.ts +2 -0
- package/internal-do-not-import-from-here/shared/models/Tokens.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/filterpicker/FilterPicker.css.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/filterpicker/FilterPicker.d.ts +209 -0
- package/internal-do-not-import-from-here/ux/filterpicker/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/filterpicker/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/filterpicker/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/stores/VelcronDefinitionStore.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/cards/Image_top_blog.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/cards/News_Image_Small.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/cards/News_Image_Top.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/cards/index.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/content/Contentblocks.d.ts +1 -6
- package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/content/Image.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/content/Image_text.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/content/Text_Quote.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/content/Text_only.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/content/index.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/headers/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/useVelcronDefinitionTemplates.d.ts +10 -5
- package/internal-do-not-import-from-here/ux/oxide/icon/Icon.d.ts +11 -0
- package/internal-do-not-import-from-here/ux/oxide/text/Text.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/theming-v2/ColorManager.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/theming-v2/ColorSchemaManager.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/theming-v2/ThemeContextStore.d.ts +24 -24
- package/internal-do-not-import-from-here/ux/theming-v2/ThemeStoreV2.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/theming-v2/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/theming-v2/styling/UseThemeStyling.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/theming-v2/themes/Blueprints.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/theming-v2/themes/SpacingTypes.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/theming-v2/themes/ThemeDefinitions.d.ts +41 -0
- package/internal-do-not-import-from-here/ux/theming-v2/themes/TypographyTypes.d.ts +192 -0
- package/internal-do-not-import-from-here/ux/theming-v2/themes/index.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/use/UseBlueprintSetup.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/use/UseVueInstance.d.ts +2 -3
- package/internal-do-not-import-from-here/ux/velcron/blocks/content/components/DefinitionPickerPanel.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/components/definitionpicker/DefinitionPicker.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +13 -13
- package/internal-do-not-import-from-here/wctypings.d.ts +2 -0
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/themes/Themes.d.ts +0 -19
@@ -129,6 +129,11 @@ export interface VelcronColorStyling {
|
|
129
129
|
toned?: boolean;
|
130
130
|
color?: string;
|
131
131
|
}
|
132
|
+
export interface VelcronTextStyling {
|
133
|
+
text: string;
|
134
|
+
typography?: string;
|
135
|
+
size?: string;
|
136
|
+
}
|
132
137
|
export interface VelcronStyling {
|
133
138
|
margin?: number;
|
134
139
|
marginTop?: number;
|
@@ -147,10 +152,10 @@ export interface VelcronCardStyling extends VelcronStyling {
|
|
147
152
|
elevation: number;
|
148
153
|
}
|
149
154
|
export interface VelcronSpacing {
|
150
|
-
top
|
151
|
-
right
|
152
|
-
bottom
|
153
|
-
left
|
155
|
+
top?: number | string;
|
156
|
+
right?: number | string;
|
157
|
+
bottom?: number | string;
|
158
|
+
left?: number | string;
|
154
159
|
}
|
155
160
|
export interface VelcronIcon {
|
156
161
|
type: VelcronIconTypes;
|
@@ -181,7 +186,7 @@ export interface VelcronComponentDefinition extends VelcronDefinition {
|
|
181
186
|
export interface VelcronViewDefinition extends VelcronDefinition, VelcronColorStyling {
|
182
187
|
type: "View";
|
183
188
|
events?: VelcronOnPressEvent;
|
184
|
-
direction?: "row" | "column";
|
189
|
+
direction?: "row" | "column" | "row-reverse" | "column-reverse" | string;
|
185
190
|
columnStyle?: object;
|
186
191
|
horizontalAlignment?: VelcronHorizontalAlignments;
|
187
192
|
verticalAlignment?: VelcronVerticalAlignments;
|
@@ -196,14 +201,11 @@ export interface VelcronCardDefinition extends VelcronDefinition, VelcronColorSt
|
|
196
201
|
footer?: Array<VelcronDefinition>;
|
197
202
|
events?: VelcronOnPressEvent;
|
198
203
|
}
|
199
|
-
export interface VelcronTextDefinition extends VelcronDefinitionWithEditMode, VelcronColorStyling {
|
204
|
+
export interface VelcronTextDefinition extends VelcronDefinitionWithEditMode, VelcronColorStyling, VelcronTextStyling {
|
200
205
|
type: "Text";
|
201
|
-
text: string;
|
202
206
|
editLabel?: VelcronBindableProp;
|
203
207
|
lineClamp?: number;
|
204
208
|
noWrap?: boolean;
|
205
|
-
typography?: string;
|
206
|
-
size?: string;
|
207
209
|
events?: VelcronOnPressEvent & VelcronOnUpdatedEvent;
|
208
210
|
}
|
209
211
|
export declare enum VelcronImageRatios {
|
@@ -246,16 +248,14 @@ export interface VelcronDialogDefinition extends VelcronDefinition {
|
|
246
248
|
visible: string;
|
247
249
|
events?: VelcronOnCloseRequestedEvent & VelcronOnClosedEvent;
|
248
250
|
}
|
249
|
-
export interface VelcronIconDefinition extends VelcronDefinition {
|
251
|
+
export interface VelcronIconDefinition extends VelcronDefinition, VelcronColorStyling {
|
250
252
|
type: "Icon";
|
251
253
|
icon: string;
|
252
|
-
color: VelcronColorStyling;
|
253
254
|
size?: VelcronBindableProp<number>;
|
254
255
|
events?: VelcronOnPressEvent;
|
255
256
|
}
|
256
|
-
export interface VelcronMarkdownDefinition extends VelcronDefinitionWithEditMode {
|
257
|
+
export interface VelcronMarkdownDefinition extends VelcronDefinitionWithEditMode, VelcronColorStyling, VelcronTextStyling {
|
257
258
|
type: "Markdown";
|
258
|
-
text: string;
|
259
259
|
events: VelcronOnUpdatedEvent;
|
260
260
|
}
|
261
261
|
export interface VelcronDimensions {
|
@@ -27,6 +27,7 @@ import wc5a6940e10c51454aa5e0a4144ab01288 from './ux/filterengine/components/sel
|
|
27
27
|
import wc937eab372066440fa95551ac8cba45d7 from './ux/filterengine/components/renderer/dialog/DialogContent';
|
28
28
|
import wc7813f37afbf34cb085a2ef74e71e20fa from './ux/filterengine/components/renderer/PropertyDropdownRenderer';
|
29
29
|
import wc373cd0c180af441ca9f973b1da4de7f9 from './ux/filterengine/components/renderer/PropertyListRenderer';
|
30
|
+
import wc46a6c15c2a0e446fbef9770274409366 from './ux/filterpicker/FilterPicker';
|
30
31
|
import wca7608d8c42184cbb994910dc06c464a1 from './ux/identities/IdentityRenderer';
|
31
32
|
import wc01c6a5e974334f06a390c9af5a7689d0 from './ux/identities/components/shared/IdentitySyncPropertyBindingSetup';
|
32
33
|
import wcc2a811dfd3774d15862abb2f6a435a5c from './ux/identities/components/shared/IdentitySyncRuleSetup';
|
@@ -272,6 +273,7 @@ declare global {
|
|
272
273
|
"omfx-filterengine-dialog-content": typeof wc937eab372066440fa95551ac8cba45d7.propsDefinition & VueComponentBaseProps;
|
273
274
|
"omfx-filterengine-property-dropdown": typeof wc7813f37afbf34cb085a2ef74e71e20fa.propsDefinition & VueComponentBaseProps;
|
274
275
|
"omfx-filterengine-property-list": typeof wc373cd0c180af441ca9f973b1da4de7f9.propsDefinition & VueComponentBaseProps;
|
276
|
+
"omfx-filter-picker": typeof wc46a6c15c2a0e446fbef9770274409366.propsDefinition & VueComponentBaseProps;
|
275
277
|
"omfx-identity-renderer": typeof wca7608d8c42184cbb994910dc06c464a1.propsDefinition & VueComponentBaseProps;
|
276
278
|
"omfx-identity-sync-property-binding-setup": typeof wc01c6a5e974334f06a390c9af5a7689d0.propsDefinition & VueComponentBaseProps;
|
277
279
|
"omfx-identity-sync-rule-setup": typeof wcc2a811dfd3774d15862abb2f6a435a5c.propsDefinition & VueComponentBaseProps;
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@omnia/fx",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "8.0.
|
4
|
+
"version": "8.0.57-vnext",
|
5
5
|
"description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
|
6
6
|
"scripts": {
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
@@ -20,7 +20,7 @@
|
|
20
20
|
],
|
21
21
|
"author": "Precio Fishbone",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.57-vnext",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|
@@ -1,19 +0,0 @@
|
|
1
|
-
import { ColorSchema, ColorSchemas, ThemeDefinitionV2, Guid, BluePrintDefinitions } from "@omnia/fx-models";
|
2
|
-
export declare class ThemeDefinitionInstance implements ThemeDefinitionV2 {
|
3
|
-
id: Guid;
|
4
|
-
colors: ColorSchemas;
|
5
|
-
blueprints: BluePrintDefinitions;
|
6
|
-
dark: boolean;
|
7
|
-
name: string;
|
8
|
-
constructor(primary: string | ColorSchema, secondary: string | ColorSchema, accent1: string | ColorSchema, accent2: string | ColorSchema, accent3: string | ColorSchema, neutral: string | ColorSchema, background: string | ColorSchema, info: string | ColorSchema, error: string | ColorSchema, name: string, dark: boolean, id: Guid, blueprints: BluePrintDefinitions);
|
9
|
-
}
|
10
|
-
export declare function DarkKnightDefinition(): ThemeDefinitionInstance;
|
11
|
-
export declare function DocumentationDefinition(): ThemeDefinitionInstance;
|
12
|
-
export declare function DarkEditorDefinition(): ThemeDefinitionInstance;
|
13
|
-
export declare function LightEditorDefinition(): ThemeDefinitionInstance;
|
14
|
-
export declare function BlackDefinition(): ThemeDefinitionInstance;
|
15
|
-
export declare function BumbleBeeDefinition(): ThemeDefinitionInstance;
|
16
|
-
export declare function CyberPunkDefinition(): ThemeDefinitionInstance;
|
17
|
-
export declare function CoffeDefinition(): ThemeDefinitionInstance;
|
18
|
-
export declare function LightThemeDefinition(): ThemeDefinitionInstance;
|
19
|
-
export declare function DarkThemeDefinition(): ThemeDefinitionInstance;
|