@animus-ui/core 0.1.1-beta.13 → 0.1.1-beta.14
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/index.d.ts +4 -0
- package/dist/index.js +2015 -1176
- 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.14](https://github.com/codecaaron/animus/compare/@animus-ui/core@0.1.1-beta.13...@animus-ui/core@0.1.1-beta.14) (2022-01-24)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @animus-ui/core
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [0.1.1-beta.13](https://github.com/codecaaron/animus/compare/@animus-ui/core@0.1.1-beta.12...@animus-ui/core@0.1.1-beta.13) (2022-01-24)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @animus-ui/core
|
package/dist/index.d.ts
CHANGED
|
@@ -8,7 +8,9 @@ export * from './createAnimus';
|
|
|
8
8
|
export * from './transforms';
|
|
9
9
|
export * from './legacy/core';
|
|
10
10
|
export * from './compatTheme';
|
|
11
|
+
/** Export extendable config */
|
|
11
12
|
export { config } from './config';
|
|
13
|
+
/** Export full builder */
|
|
12
14
|
export declare const animus: import("./Animus").Animus<{
|
|
13
15
|
readonly gap: {
|
|
14
16
|
readonly property: "gap";
|
|
@@ -216,6 +218,7 @@ export declare const animus: import("./Animus").Animus<{
|
|
|
216
218
|
};
|
|
217
219
|
readonly borderColor: {
|
|
218
220
|
readonly property: "borderColor";
|
|
221
|
+
/** Export full builder */
|
|
219
222
|
readonly scale: "colors";
|
|
220
223
|
};
|
|
221
224
|
readonly borderColorX: {
|
|
@@ -726,6 +729,7 @@ export declare const animus: import("./Animus").Animus<{
|
|
|
726
729
|
};
|
|
727
730
|
readonly borderColor: {
|
|
728
731
|
readonly property: "borderColor";
|
|
732
|
+
/** Export full builder */
|
|
729
733
|
readonly scale: "colors";
|
|
730
734
|
};
|
|
731
735
|
readonly borderColorX: {
|