@ctlyst.id/voila-ui-core 1.6.3 → 2.0.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.
Files changed (43) hide show
  1. package/dist/index.css +33988 -0
  2. package/dist/index.css.map +1 -0
  3. package/dist/index.d.mts +10609 -0
  4. package/dist/index.d.ts +10609 -0
  5. package/dist/index.js +581 -3
  6. package/dist/index.js.map +1 -0
  7. package/dist/index.mjs +369 -544
  8. package/dist/index.mjs.map +1 -0
  9. package/package.json +37 -48
  10. package/dist/style.css +0 -1
  11. package/dist/types/@types/vanilla-sprinkles.d.ts +0 -17
  12. package/dist/types/index.d.ts +0 -6
  13. package/dist/types/theme/index.d.ts +0 -2
  14. package/dist/types/theme/styles/atoms/background.css.d.ts +0 -100
  15. package/dist/types/theme/styles/atoms/border.css.d.ts +0 -1600
  16. package/dist/types/theme/styles/atoms/common.css.d.ts +0 -744
  17. package/dist/types/theme/styles/atoms/constants.d.ts +0 -3
  18. package/dist/types/theme/styles/atoms/flex.css.d.ts +0 -636
  19. package/dist/types/theme/styles/atoms/grid.css.d.ts +0 -855
  20. package/dist/types/theme/styles/atoms/index.d.ts +0 -11
  21. package/dist/types/theme/styles/atoms/position.css.d.ts +0 -1050
  22. package/dist/types/theme/styles/atoms/radii.css.d.ts +0 -48
  23. package/dist/types/theme/styles/atoms/shadow.css.d.ts +0 -44
  24. package/dist/types/theme/styles/atoms/sizes.css.d.ts +0 -1801
  25. package/dist/types/theme/styles/atoms/space.css.d.ts +0 -2543
  26. package/dist/types/theme/styles/atoms/typography.css.d.ts +0 -413
  27. package/dist/types/theme/styles/globals.css.d.ts +0 -3
  28. package/dist/types/theme/styles/index.d.ts +0 -4
  29. package/dist/types/theme/styles/normalize.css.d.ts +0 -0
  30. package/dist/types/theme/styles/theme.css.d.ts +0 -353
  31. package/dist/types/theme/styles/utilityClasses.css.d.ts +0 -2
  32. package/dist/types/theme/styles/utils.d.ts +0 -17
  33. package/dist/types/theme/tokens/animation.d.ts +0 -21
  34. package/dist/types/theme/tokens/border.d.ts +0 -9
  35. package/dist/types/theme/tokens/breakpoints.d.ts +0 -9
  36. package/dist/types/theme/tokens/color.d.ts +0 -130
  37. package/dist/types/theme/tokens/index.d.ts +0 -354
  38. package/dist/types/theme/tokens/opacity.d.ts +0 -8
  39. package/dist/types/theme/tokens/radii.d.ts +0 -6
  40. package/dist/types/theme/tokens/shadows.d.ts +0 -6
  41. package/dist/types/theme/tokens/space.d.ts +0 -96
  42. package/dist/types/theme/tokens/typography.d.ts +0 -137
  43. package/dist/types/theme/tokens/z-indices.d.ts +0 -16
@@ -1,48 +0,0 @@
1
- export declare const radiiAtoms: import("rainbow-sprinkles/dist/declarations/src/createRuntimeFn").SprinklesFn<[{
2
- config: {
3
- borderRadius: {
4
- values: {
5
- none: {
6
- default: string;
7
- conditions: Record<string | number, string>;
8
- };
9
- rounded: {
10
- default: string;
11
- conditions: Record<string | number, string>;
12
- };
13
- full: {
14
- default: string;
15
- conditions: Record<string | number, string>;
16
- };
17
- };
18
- staticScale: {
19
- none: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
20
- rounded: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
21
- full: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
22
- };
23
- name: "borderRadius";
24
- };
25
- };
26
- } & {
27
- config: {
28
- borderRadius: {
29
- dynamic: {
30
- default: string;
31
- conditions: Record<string | number, string>;
32
- };
33
- dynamicScale: true;
34
- name: "borderRadius";
35
- vars: {
36
- default: string;
37
- conditions: Record<string | number, string>;
38
- };
39
- };
40
- };
41
- } & {
42
- config: {
43
- radius: {
44
- mappings: "borderRadius"[];
45
- };
46
- };
47
- }]>;
48
- export type RadiiAtoms = Parameters<typeof radiiAtoms>[0];
@@ -1,44 +0,0 @@
1
- export declare const shadowAtoms: import("rainbow-sprinkles/dist/declarations/src/createRuntimeFn").SprinklesFn<[{
2
- config: {
3
- boxShadow: {
4
- values: {
5
- none: {
6
- default: string;
7
- conditions: Record<string | number, string>;
8
- };
9
- raised: {
10
- default: string;
11
- conditions: Record<string | number, string>;
12
- };
13
- floating: {
14
- default: string;
15
- conditions: Record<string | number, string>;
16
- };
17
- };
18
- staticScale: {
19
- none: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
20
- raised: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
21
- floating: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
22
- };
23
- name: "boxShadow";
24
- };
25
- };
26
- } & {
27
- config: {
28
- boxShadow: {
29
- dynamic: {
30
- default: string;
31
- conditions: Record<string | number, string>;
32
- };
33
- dynamicScale: true;
34
- name: "boxShadow";
35
- vars: {
36
- default: string;
37
- conditions: Record<string | number, string>;
38
- };
39
- };
40
- };
41
- } & {
42
- config: {};
43
- }]>;
44
- export type ShadowAtoms = Parameters<typeof shadowAtoms>[0];