magneto365.ui 2.72.0 → 2.72.1
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/dist/cjs/types/components/docs/DesignSystem/DesignSystem.interface.d.ts +32 -0
- package/dist/cjs/types/components/docs/DesignSystem/children/DesignSystemUtilityClass/children/DesignSystemUtilityClassRenderer/DesignSystemUtilityClassRenderer.component.d.ts +3 -0
- package/dist/cjs/types/components/docs/DesignSystem/children/DesignSystemUtilityClass/children/DesignSystemUtilityClassRenderer/DesignSystemUtilityClassRenderer.interface.d.ts +4 -0
- package/dist/cjs/types/components/docs/DesignSystem/children/DesignSystemUtilityClass/children/DesignSystemUtilityClassRenderer/index.d.ts +2 -0
- package/dist/cjs/types/components/docs/DesignSystem/children/DesignSystemUtilityClass/children/index.d.ts +1 -0
- package/dist/esm/types/components/docs/DesignSystem/DesignSystem.interface.d.ts +32 -0
- package/dist/esm/types/components/docs/DesignSystem/children/DesignSystemUtilityClass/children/DesignSystemUtilityClassRenderer/DesignSystemUtilityClassRenderer.component.d.ts +3 -0
- package/dist/esm/types/components/docs/DesignSystem/children/DesignSystemUtilityClass/children/DesignSystemUtilityClassRenderer/DesignSystemUtilityClassRenderer.interface.d.ts +4 -0
- package/dist/esm/types/components/docs/DesignSystem/children/DesignSystemUtilityClass/children/DesignSystemUtilityClassRenderer/index.d.ts +2 -0
- package/dist/esm/types/components/docs/DesignSystem/children/DesignSystemUtilityClass/children/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export declare type IDesignSystem = {
|
|
2
|
+
values: IDesignSystemValues;
|
|
3
|
+
utilities?: IDesignSystemUtilities;
|
|
4
|
+
docs?: IDesignSystemDocs;
|
|
5
|
+
};
|
|
6
|
+
export declare type IDesignSystemValues = {
|
|
7
|
+
[key: string]: string | number | IDesignSystemValues;
|
|
8
|
+
};
|
|
9
|
+
export declare type IDesignSystemUtilities = {
|
|
10
|
+
imports?: IDesignSystemImport[];
|
|
11
|
+
classes?: IDesignSystemClass[];
|
|
12
|
+
};
|
|
13
|
+
export declare type IDesignSystemImport = {
|
|
14
|
+
file: string;
|
|
15
|
+
alias?: string;
|
|
16
|
+
};
|
|
17
|
+
export declare type IDesignSystemClass = {
|
|
18
|
+
name: string;
|
|
19
|
+
prefix: string;
|
|
20
|
+
conditions?: IDesignSystemConditions;
|
|
21
|
+
properties: IDesignSystemProperty[];
|
|
22
|
+
};
|
|
23
|
+
export declare type IDesignSystemConditions = {
|
|
24
|
+
excludeValues?: string[];
|
|
25
|
+
removeFromClass?: string[];
|
|
26
|
+
};
|
|
27
|
+
export declare type IDesignSystemProperty = {
|
|
28
|
+
property: string;
|
|
29
|
+
};
|
|
30
|
+
export declare type IDesignSystemDocs = {
|
|
31
|
+
[key: string]: string | boolean | number;
|
|
32
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { DesignSystemUtilityClassRenderer } from './DesignSystemUtilityClassRenderer';
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export declare type IDesignSystem = {
|
|
2
|
+
values: IDesignSystemValues;
|
|
3
|
+
utilities?: IDesignSystemUtilities;
|
|
4
|
+
docs?: IDesignSystemDocs;
|
|
5
|
+
};
|
|
6
|
+
export declare type IDesignSystemValues = {
|
|
7
|
+
[key: string]: string | number | IDesignSystemValues;
|
|
8
|
+
};
|
|
9
|
+
export declare type IDesignSystemUtilities = {
|
|
10
|
+
imports?: IDesignSystemImport[];
|
|
11
|
+
classes?: IDesignSystemClass[];
|
|
12
|
+
};
|
|
13
|
+
export declare type IDesignSystemImport = {
|
|
14
|
+
file: string;
|
|
15
|
+
alias?: string;
|
|
16
|
+
};
|
|
17
|
+
export declare type IDesignSystemClass = {
|
|
18
|
+
name: string;
|
|
19
|
+
prefix: string;
|
|
20
|
+
conditions?: IDesignSystemConditions;
|
|
21
|
+
properties: IDesignSystemProperty[];
|
|
22
|
+
};
|
|
23
|
+
export declare type IDesignSystemConditions = {
|
|
24
|
+
excludeValues?: string[];
|
|
25
|
+
removeFromClass?: string[];
|
|
26
|
+
};
|
|
27
|
+
export declare type IDesignSystemProperty = {
|
|
28
|
+
property: string;
|
|
29
|
+
};
|
|
30
|
+
export declare type IDesignSystemDocs = {
|
|
31
|
+
[key: string]: string | boolean | number;
|
|
32
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { DesignSystemUtilityClassRenderer } from './DesignSystemUtilityClassRenderer';
|
package/package.json
CHANGED