@animus-ui/core 0.1.1-beta.15 → 0.1.1-beta.19

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 CHANGED
@@ -3,6 +3,38 @@
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.19](https://github.com/codecaaron/animus/compare/@animus-ui/core@0.1.1-beta.18...@animus-ui/core@0.1.1-beta.19) (2022-02-14)
7
+
8
+ **Note:** Version bump only for package @animus-ui/core
9
+
10
+
11
+
12
+
13
+
14
+ ## [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)
15
+
16
+ **Note:** Version bump only for package @animus-ui/core
17
+
18
+
19
+
20
+
21
+
22
+ ## [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)
23
+
24
+ **Note:** Version bump only for package @animus-ui/core
25
+
26
+
27
+
28
+
29
+
30
+ ## [0.1.1-beta.16](https://github.com/codecaaron/animus/compare/@animus-ui/core@0.1.1-beta.15...@animus-ui/core@0.1.1-beta.16) (2022-02-02)
31
+
32
+ **Note:** Version bump only for package @animus-ui/core
33
+
34
+
35
+
36
+
37
+
6
38
  ## [0.1.1-beta.15](https://github.com/codecaaron/animus/compare/@animus-ui/core@0.1.1-beta.14...@animus-ui/core@0.1.1-beta.15) (2022-01-26)
7
39
 
8
40
  **Note:** Version bump only for package @animus-ui/core
package/dist/Animus.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /// <reference types="react" />
2
+ import { CSSPropMap, CSSProps, Parser, Prop, SystemProps, VariantConfig } from './types/config';
2
3
  import { AbstractProps, ThemeProps } from './types/props';
3
4
  import { CSSObject } from './types/shared';
4
- import { Parser, Prop, SystemProps, VariantConfig, CSSPropMap, CSSProps } from './types/config';
5
5
  import { Arg } from './types/utils';
6
6
  export declare class AnimusWithAll<PropRegistry extends Record<string, Prop>, GroupRegistry extends Record<string, (keyof PropRegistry)[]>, BaseParser extends Parser<PropRegistry>, BaseStyles extends CSSProps<AbstractProps, SystemProps<BaseParser>>, Variants extends Record<string, VariantConfig>, States extends CSSPropMap<AbstractProps, SystemProps<BaseParser>>, ActiveGroups extends Record<string, true>, CustomProps extends Record<string, Prop>> {
7
7
  propRegistry: PropRegistry;
@@ -1,5 +1,5 @@
1
- import { Prop } from './types/config';
2
1
  import { Animus } from './Animus';
2
+ import { Prop } from './types/config';
3
3
  export declare class AnimusConfig<C extends Record<string, Prop> = {}, G extends Record<string, (keyof C)[]> = {}> {
4
4
  #private;
5
5
  constructor(config?: C, groups?: G);
@@ -6,22 +6,23 @@ export declare const compatTheme: {
6
6
  readonly lg: 1200;
7
7
  readonly xl: 1440;
8
8
  };
9
- readonly spacing: readonly [0, 4, 8, 12, 16, 24, 32, 40, 48, 64, 96];
10
- readonly fontSize: readonly [64, 44, 34, 26, 22, 20, 18, 16, 14];
11
- readonly lineHeight: {
12
- readonly body: 1.5;
13
- readonly heading: 1;
14
- };
15
- readonly fontWeight: readonly [400, 600, 700];
16
- readonly fontFamily: {
17
- readonly body: "Verdana, sans-serif";
18
- readonly heading: "Verdana, Lato, sans-serif";
19
- readonly monospace: "monospace";
20
- };
21
- readonly radii: readonly [2, 4, 6, 8];
22
- readonly borders: readonly [1, 2, 3];
9
+ readonly space: readonly [0, 2, 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 & {}))[];
23
18
  readonly colors: {};
19
+ readonly gradients: {};
20
+ readonly shadows: {};
24
21
  readonly modes: {};
22
+ readonly transitions: {};
23
+ readonly animations: {};
24
+ readonly zIndices: {};
25
+ readonly opacities: {};
25
26
  readonly mode: undefined;
26
27
  };
27
28
  export declare type CompatTheme = typeof compatTheme;