hisd3-ui-kit 2.0.0 → 2.0.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/index.d.ts +13 -13
- package/dist/types/theme.d.ts +13 -13
- package/package.json +1 -1
- package/tsconfig.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -123,20 +123,20 @@ interface Sizes {
|
|
|
123
123
|
};
|
|
124
124
|
}
|
|
125
125
|
interface StyledTheme {
|
|
126
|
-
spacing
|
|
127
|
-
cardRadius
|
|
128
|
-
cardRadius30
|
|
129
|
-
cardShadow
|
|
130
|
-
direction
|
|
131
|
-
palette
|
|
132
|
-
status
|
|
133
|
-
danger
|
|
126
|
+
spacing?: number;
|
|
127
|
+
cardRadius?: string;
|
|
128
|
+
cardRadius30?: string;
|
|
129
|
+
cardShadow?: string;
|
|
130
|
+
direction?: LayoutDirection;
|
|
131
|
+
palette?: Palette;
|
|
132
|
+
status?: {
|
|
133
|
+
danger?: string;
|
|
134
134
|
};
|
|
135
|
-
divider
|
|
136
|
-
font
|
|
137
|
-
sidebar
|
|
138
|
-
breakpoints
|
|
139
|
-
sizes
|
|
135
|
+
divider?: string;
|
|
136
|
+
font?: Font;
|
|
137
|
+
sidebar?: Sidebar;
|
|
138
|
+
breakpoints?: Breakpoints;
|
|
139
|
+
sizes?: Sizes;
|
|
140
140
|
}
|
|
141
141
|
|
|
142
142
|
interface HISD3SidebarProps {
|
package/dist/types/theme.d.ts
CHANGED
|
@@ -104,19 +104,19 @@ interface Sizes {
|
|
|
104
104
|
};
|
|
105
105
|
}
|
|
106
106
|
export interface StyledTheme {
|
|
107
|
-
spacing
|
|
108
|
-
cardRadius
|
|
109
|
-
cardRadius30
|
|
110
|
-
cardShadow
|
|
111
|
-
direction
|
|
112
|
-
palette
|
|
113
|
-
status
|
|
114
|
-
danger
|
|
107
|
+
spacing?: number;
|
|
108
|
+
cardRadius?: string;
|
|
109
|
+
cardRadius30?: string;
|
|
110
|
+
cardShadow?: string;
|
|
111
|
+
direction?: LayoutDirection;
|
|
112
|
+
palette?: Palette;
|
|
113
|
+
status?: {
|
|
114
|
+
danger?: string;
|
|
115
115
|
};
|
|
116
|
-
divider
|
|
117
|
-
font
|
|
118
|
-
sidebar
|
|
119
|
-
breakpoints
|
|
120
|
-
sizes
|
|
116
|
+
divider?: string;
|
|
117
|
+
font?: Font;
|
|
118
|
+
sidebar?: Sidebar;
|
|
119
|
+
breakpoints?: Breakpoints;
|
|
120
|
+
sizes?: Sizes;
|
|
121
121
|
}
|
|
122
122
|
export {};
|
package/package.json
CHANGED
package/tsconfig.json
CHANGED
|
@@ -13,6 +13,6 @@
|
|
|
13
13
|
"allowJs": true, // Allow JavaScript files to be imported into the TypeScript project
|
|
14
14
|
"resolveJsonModule": true // Allow importing JSON files as modules
|
|
15
15
|
},
|
|
16
|
-
"include": ["src"], //
|
|
16
|
+
"include": ["src", "dist"], // Add your source directories here
|
|
17
17
|
"exclude": ["node_modules"] // Exclude 'node_modules' folder
|
|
18
18
|
}
|