@animus-ui/core 0.1.1-beta.17 → 0.1.1-beta.18
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/CHANGELOG.md +8 -0
- package/dist/compatTheme.d.ts +14 -11
- package/dist/config.d.ts +256 -128
- package/dist/index.d.ts +125 -64
- package/dist/index.js +98 -59
- package/dist/scales/createScale.d.ts +3 -0
- package/dist/types/config.d.ts +2 -2
- package/dist/types/properties.d.ts +6 -9
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.1.1-beta.18](https://github.com/codecaaron/animus/compare/@animus-ui/core@0.1.1-beta.17...@animus-ui/core@0.1.1-beta.18) (2022-02-11)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @animus-ui/core
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [0.1.1-beta.17](https://github.com/codecaaron/animus/compare/@animus-ui/core@0.1.1-beta.16...@animus-ui/core@0.1.1-beta.17) (2022-02-02)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @animus-ui/core
|
package/dist/compatTheme.d.ts
CHANGED
|
@@ -6,19 +6,22 @@ export declare const compatTheme: {
|
|
|
6
6
|
readonly lg: 1200;
|
|
7
7
|
readonly xl: 1440;
|
|
8
8
|
};
|
|
9
|
-
readonly
|
|
10
|
-
readonly
|
|
11
|
-
readonly
|
|
12
|
-
readonly
|
|
13
|
-
readonly
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
};
|
|
18
|
-
readonly radii: readonly [2, 4, 6, 8];
|
|
19
|
-
readonly borders: readonly [1, 2, 3];
|
|
9
|
+
readonly space: readonly [0, 4, 8, 12, 16, 24, 32, 40, 48, 64, 96];
|
|
10
|
+
readonly fontSizes: readonly [64, 44, 34, 26, 22, 20, 18, 16, 14];
|
|
11
|
+
readonly lineHeights: ((string & {}) | (number & {}))[];
|
|
12
|
+
readonly letterSpacings: {};
|
|
13
|
+
readonly fontWeights: ((string & {}) | (number & {}))[];
|
|
14
|
+
readonly fonts: {};
|
|
15
|
+
readonly radii: ((string & {}) | (number & {}))[];
|
|
16
|
+
readonly borders: ((string & {}) | (number & {}))[];
|
|
17
|
+
readonly borderWidths: ((string & {}) | (number & {}))[];
|
|
20
18
|
readonly colors: {};
|
|
19
|
+
readonly shadows: {};
|
|
21
20
|
readonly modes: {};
|
|
21
|
+
readonly transitions: {};
|
|
22
|
+
readonly animations: {};
|
|
23
|
+
readonly zIndices: {};
|
|
24
|
+
readonly opacities: {};
|
|
22
25
|
readonly mode: undefined;
|
|
23
26
|
};
|
|
24
27
|
export declare type CompatTheme = typeof compatTheme;
|