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 CHANGED
@@ -123,20 +123,20 @@ interface Sizes {
123
123
  };
124
124
  }
125
125
  interface StyledTheme {
126
- spacing: number;
127
- cardRadius: string;
128
- cardRadius30: string;
129
- cardShadow: string;
130
- direction: LayoutDirection;
131
- palette: Palette;
132
- status: {
133
- danger: string;
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: string;
136
- font: Font;
137
- sidebar: Sidebar;
138
- breakpoints: Breakpoints;
139
- sizes: Sizes;
135
+ divider?: string;
136
+ font?: Font;
137
+ sidebar?: Sidebar;
138
+ breakpoints?: Breakpoints;
139
+ sizes?: Sizes;
140
140
  }
141
141
 
142
142
  interface HISD3SidebarProps {
@@ -104,19 +104,19 @@ interface Sizes {
104
104
  };
105
105
  }
106
106
  export interface StyledTheme {
107
- spacing: number;
108
- cardRadius: string;
109
- cardRadius30: string;
110
- cardShadow: string;
111
- direction: LayoutDirection;
112
- palette: Palette;
113
- status: {
114
- danger: string;
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: string;
117
- font: Font;
118
- sidebar: Sidebar;
119
- breakpoints: Breakpoints;
120
- sizes: 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hisd3-ui-kit",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "A UI kit for HISD3",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
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"], // Include all TypeScript files in 'src' folder
16
+ "include": ["src", "dist"], // Add your source directories here
17
17
  "exclude": ["node_modules"] // Exclude 'node_modules' folder
18
18
  }