@omnia/fx 8.0.273-dev → 8.0.275-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/internal-do-not-import-from-here/ux/Styles.stylex.d.ts +19 -0
- package/internal-do-not-import-from-here/ux/admin/usermanagement/userproperties/UserPropertyDetailBlade.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +152 -0
- package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +152 -0
- package/internal-do-not-import-from-here/ux/aurora/styling/UseStyling.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/aurora/styling/styles/Typography.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/identities/loc/Localize.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/linkpicker/LinkPicker.d.ts +1 -3
- package/internal-do-not-import-from-here/ux/linkpicker/LinkRenderer.d.ts +4 -3
- package/internal-do-not-import-from-here/ux/models/linkpicker/ILinkRenderer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/models/linkpicker/LinkPickerRegistration.d.ts +8 -1
- package/package.json +2 -2
@@ -50,6 +50,7 @@ export declare const cssRules: {
|
|
50
50
|
fontSize: (fontSize: string | number, important?: boolean) => StylexType;
|
51
51
|
fontWeight: (fontWeight: number) => StylexType;
|
52
52
|
lineHeight: (lineHeight: string) => StylexType;
|
53
|
+
letterSpacing: (letterSpacing: string) => StylexType;
|
53
54
|
textDecoration: (textDecoration: string, important?: boolean) => StylexType;
|
54
55
|
background: (background: string, important?: boolean) => StylexType;
|
55
56
|
opacity: (opacity: string | number) => StylexType;
|
@@ -149,6 +150,12 @@ export declare const cssRules: {
|
|
149
150
|
"--lineHeight-sm": string;
|
150
151
|
};
|
151
152
|
};
|
153
|
+
letterSpacing: (letterSpacing: string, important?: boolean) => {
|
154
|
+
class: string;
|
155
|
+
style: {
|
156
|
+
"--letterSpacing-sm": string;
|
157
|
+
};
|
158
|
+
};
|
152
159
|
};
|
153
160
|
md: {
|
154
161
|
fontSize: (fontSize: string, important?: boolean) => {
|
@@ -169,6 +176,12 @@ export declare const cssRules: {
|
|
169
176
|
"--lineHeight-md": string;
|
170
177
|
};
|
171
178
|
};
|
179
|
+
letterSpacing: (letterSpacing: string, important?: boolean) => {
|
180
|
+
class: string;
|
181
|
+
style: {
|
182
|
+
"--letterSpacing-md": string;
|
183
|
+
};
|
184
|
+
};
|
172
185
|
};
|
173
186
|
lg: {
|
174
187
|
fontSize: (fontSize: string, important?: boolean) => {
|
@@ -189,6 +202,12 @@ export declare const cssRules: {
|
|
189
202
|
"--lineHeight-lg": string;
|
190
203
|
};
|
191
204
|
};
|
205
|
+
letterSpacing: (letterSpacing: string, important?: boolean) => {
|
206
|
+
class: string;
|
207
|
+
style: {
|
208
|
+
"--letterSpacing-lg": string;
|
209
|
+
};
|
210
|
+
};
|
192
211
|
};
|
193
212
|
};
|
194
213
|
container: {
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
1
|
+
import { DefineEmit } from "@omnia/fx/ux";
|
2
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<DefineEmit<"save", () => void> & DefineEmit<"loadPropertiesToRender", () => void>>) => any;
|
2
3
|
export default _default;
|