@akinon/ui-theme 0.0.1 → 0.1.0
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/colors.d.ts +13 -0
- package/dist/colors.d.ts.map +1 -1
- package/dist/index.cjs +9 -9
- package/dist/index.js +417 -363
- package/dist/theme.d.ts +3 -0
- package/dist/theme.d.ts.map +1 -1
- package/package.json +4 -4
package/dist/theme.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { theme as antdTheme, ThemeConfig } from 'antd';
|
|
2
|
+
export declare const fontSize = 16;
|
|
2
3
|
type ColorName = 'akinon' | 'azure' | 'orange' | 'red' | 'green' | 'purple' | 'gray' | 'ebonyClay' | 'neutral';
|
|
3
4
|
type Color = {
|
|
4
5
|
[key: string]: string;
|
|
@@ -12,6 +13,8 @@ export type DefaultThemeConfig = ThemeConfig & {
|
|
|
12
13
|
* This object contains both our theme values and
|
|
13
14
|
* antd's default theme values.
|
|
14
15
|
*
|
|
16
|
+
* You can use https://ant.design/theme-editor tool
|
|
17
|
+
* to learn about properties and their effects.
|
|
15
18
|
*/
|
|
16
19
|
export declare const theme: DefaultThemeConfig;
|
|
17
20
|
/**
|
package/dist/theme.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../src/theme.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,IAAI,SAAS,EAAE,WAAW,EAAE,MAAM,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../src/theme.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,IAAI,SAAS,EAAE,WAAW,EAAE,MAAM,MAAM,CAAC;AAevD,eAAO,MAAM,QAAQ,KAAK,CAAC;AAE3B,KAAK,SAAS,GACV,QAAQ,GACR,OAAO,GACP,QAAQ,GACR,KAAK,GACL,OAAO,GACP,QAAQ,GACR,MAAM,GACN,WAAW,GACX,SAAS,CAAC;AAEd,KAAK,KAAK,GAAG;IACX,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;CACvB,CAAC;AAEF,KAAK,MAAM,GAAG,MAAM,CAAC,SAAS,EAAE,KAAK,CAAC,CAAC;AAavC,MAAM,MAAM,kBAAkB,GAAG,WAAW,GAAG;IAC7C,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF;;;;;;;GAOG;AACH,eAAO,MAAM,KAAK,EAAE,kBAuFnB,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,QAAQ,EAAE,OAAO,SAAS,CAAC,QAA6B,CAAC;AAEtE;;;;;;;;;GASG;AACH,eAAO,MAAM,eAAe;;CAc3B,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@akinon/ui-theme",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Akinon UI's default theme values.",
|
|
6
6
|
"type": "module",
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"clean-package": "2.2.0",
|
|
17
|
-
"@akinon/
|
|
18
|
-
"eslint-config
|
|
19
|
-
"
|
|
17
|
+
"@akinon/typescript-config": "0.0.0",
|
|
18
|
+
"@akinon/eslint-config": "0.1.0",
|
|
19
|
+
"@akinon/vite-config": "^0.1.1"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"react": ">=18",
|