@omnia/fx-models 8.0.295-dev → 8.0.297-dev
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/BusinessProfile.d.ts +8 -5
- package/BusinessProfile.js +10 -3
- package/Contexts.d.ts +3 -4
- package/Enums.tooling.d.ts +2 -2
- package/Enums.tooling.js +1 -0
- package/Exposes.d.ts +1 -3
- package/Exposes.js +1 -3
- package/Layout.d.ts +9 -9
- package/Tenant.d.ts +3 -2
- package/Tenant.js +3 -3
- package/{Theming.d.ts → Theme.d.ts} +1 -1
- package/apps/App.d.ts +1 -1
- package/apps/App.js +3 -3
- package/identities/DynamicGroupIdentity.d.ts +2 -0
- package/identities/DynamicGroupIdentity.js +3 -0
- package/identities/UserIdentity.d.ts +1 -0
- package/identities/UserIdentity.js +5 -0
- package/internal-do-not-import-from-here/shared/models/index.d.ts +1 -1
- package/internal-do-not-import-from-here/shared/models/index.js +1 -1
- package/internal-do-not-import-from-here/shared/models/{theming → theme}/Blueprints.d.ts +5 -5
- package/internal-do-not-import-from-here/shared/models/theme/LegacyThemeDefinition.d.ts +28 -0
- package/internal-do-not-import-from-here/shared/models/theme/LegacyThemeDefinition.js +2 -0
- package/internal-do-not-import-from-here/shared/models/{theming/ThemingBase.d.ts → theme/ThemeBase.d.ts} +3 -3
- package/internal-do-not-import-from-here/shared/models/theme/ThemeBase.js +12 -0
- package/internal-do-not-import-from-here/shared/models/theme/ThemeBoot.d.ts +7 -0
- package/internal-do-not-import-from-here/shared/models/theme/ThemeBoot.js +2 -0
- package/internal-do-not-import-from-here/shared/models/{theming/ThemeDefinitionV2.d.ts → theme/ThemeDefinition.d.ts} +117 -14
- package/internal-do-not-import-from-here/shared/models/{theming/ThemeDefinitionV2.js → theme/ThemeDefinition.js} +4 -0
- package/internal-do-not-import-from-here/shared/models/{theming → theme}/Typography.d.ts +3 -10
- package/internal-do-not-import-from-here/shared/models/{theming → theme}/UseThemeMethods.d.ts +1 -1
- package/internal-do-not-import-from-here/shared/models/{theming → theme}/UseThemeMethods.js +28 -28
- package/internal-do-not-import-from-here/shared/models/{theming → theme}/index.d.ts +5 -3
- package/internal-do-not-import-from-here/shared/models/{theming → theme}/index.js +5 -3
- package/internal-do-not-import-from-here/shared/models/velcron/VelcronDefinition.d.ts +13 -2
- package/internal-do-not-import-from-here/velcron/core/models/VelcronDefinitions.d.ts +13 -17
- package/oxide/OxideTypeDefinitions.d.ts +13 -3
- package/oxide/OxideTypeDefinitions.js +1 -3
- package/package.json +1 -1
- package/ThemeDefinition.d.ts +0 -109
- package/ThemeDefinition.js +0 -11
- package/internal-do-not-import-from-here/shared/models/theming/ThemingBase.js +0 -12
- package/internal-do-not-import-from-here/shared/models/theming/ThemingDefinitionV3.d.ts +0 -44
- package/internal-do-not-import-from-here/shared/models/theming/ThemingDefinitionV3.js +0 -6
- /package/{Color.js → Theme.js} +0 -0
- /package/internal-do-not-import-from-here/shared/models/{theming → theme}/Blueprints.js +0 -0
- /package/{Color.d.ts → internal-do-not-import-from-here/shared/models/theme/Color.d.ts} +0 -0
- /package/{Theming.js → internal-do-not-import-from-here/shared/models/theme/Color.js} +0 -0
- /package/internal-do-not-import-from-here/shared/models/{theming → theme}/SharedBlueprintMethods.d.ts +0 -0
- /package/internal-do-not-import-from-here/shared/models/{theming → theme}/SharedBlueprintMethods.js +0 -0
- /package/internal-do-not-import-from-here/shared/models/{theming → theme}/SharedColorMethods.d.ts +0 -0
- /package/internal-do-not-import-from-here/shared/models/{theming → theme}/SharedColorMethods.js +0 -0
- /package/internal-do-not-import-from-here/shared/models/{theming → theme}/Spacing.d.ts +0 -0
- /package/internal-do-not-import-from-here/shared/models/{theming → theme}/Spacing.js +0 -0
- /package/internal-do-not-import-from-here/shared/models/{theming → theme}/Typography.js +0 -0
- /package/internal-do-not-import-from-here/shared/models/{theming → theme}/useSpacingScaling.d.ts +0 -0
- /package/internal-do-not-import-from-here/shared/models/{theming → theme}/useSpacingScaling.js +0 -0
@@ -1,44 +0,0 @@
|
|
1
|
-
import { guid } from "../Guid";
|
2
|
-
import { Id } from "../Id";
|
3
|
-
import { ComponentBlueprints, SpacingBlueprints, TypographyBlueprints } from "./Blueprints";
|
4
|
-
import { ColorDefinition, ColorSchemas } from "./ThemeDefinitionV2";
|
5
|
-
import { ThemingBase } from "./ThemingBase";
|
6
|
-
export type ColorSchemaId = Id<guid, "ColorSchemaId">;
|
7
|
-
export declare function ColorSchemaId(id: guid): ColorSchemaId;
|
8
|
-
export type ThemeDefinitionId = Id<guid, "ThemeDefinitionId">;
|
9
|
-
export declare function ThemeDefinitionId(id: guid): ThemeDefinitionId;
|
10
|
-
export interface ColorSchemasReferenceV2 {
|
11
|
-
primaryId: ColorSchemaId;
|
12
|
-
secondaryId: ColorSchemaId;
|
13
|
-
accent1Id: ColorSchemaId;
|
14
|
-
accent2Id: ColorSchemaId;
|
15
|
-
accent3Id: ColorSchemaId;
|
16
|
-
accent4Id: ColorSchemaId;
|
17
|
-
accent5Id: ColorSchemaId;
|
18
|
-
neutralId: ColorSchemaId;
|
19
|
-
backgroundId: ColorSchemaId;
|
20
|
-
errorId: ColorSchemaId;
|
21
|
-
infoId: ColorSchemaId;
|
22
|
-
warningId: ColorSchemaId;
|
23
|
-
successId: ColorSchemaId;
|
24
|
-
notificationId: ColorSchemaId;
|
25
|
-
}
|
26
|
-
export interface ThemeDefinitionV3 extends ThemingBase {
|
27
|
-
name?: string;
|
28
|
-
colors?: ColorSchemasReferenceV2;
|
29
|
-
typographyId?: ThemeDefinitionId;
|
30
|
-
spacingId?: ThemeDefinitionId;
|
31
|
-
componentsId?: ThemeDefinitionId;
|
32
|
-
}
|
33
|
-
export interface ColorSchemaV3 extends ThemingBase {
|
34
|
-
base: ColorDefinition;
|
35
|
-
onBase: ColorDefinition;
|
36
|
-
container: ColorDefinition;
|
37
|
-
onContainer: ColorDefinition;
|
38
|
-
}
|
39
|
-
export interface ResolvedThemeDefinition extends ThemingBase {
|
40
|
-
colors?: ColorSchemas;
|
41
|
-
typography?: TypographyBlueprints;
|
42
|
-
spacing?: SpacingBlueprints;
|
43
|
-
components?: ComponentBlueprints;
|
44
|
-
}
|
/package/{Color.js → Theme.js}
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
/package/internal-do-not-import-from-here/shared/models/{theming → theme}/SharedBlueprintMethods.js
RENAMED
File without changes
|
/package/internal-do-not-import-from-here/shared/models/{theming → theme}/SharedColorMethods.d.ts
RENAMED
File without changes
|
/package/internal-do-not-import-from-here/shared/models/{theming → theme}/SharedColorMethods.js
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
/package/internal-do-not-import-from-here/shared/models/{theming → theme}/useSpacingScaling.d.ts
RENAMED
File without changes
|
/package/internal-do-not-import-from-here/shared/models/{theming → theme}/useSpacingScaling.js
RENAMED
File without changes
|