@jobber/design 0.63.0 → 0.64.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 (42) hide show
  1. package/README.md +29 -15
  2. package/dist/{icons/iconMap.d.ts → assets/icon.map.d.ts} +166 -165
  3. package/{foundation.native.d.ts → dist/assets/tokens.all.colors.d.ts} +55 -143
  4. package/{foundation.android.d.ts → dist/assets/tokens.android.d.ts} +175 -175
  5. package/dist/assets/tokens.color.d.ts +80 -0
  6. package/dist/assets/tokens.dark.d.ts +79 -0
  7. package/{foundation.ios.d.ts → dist/assets/tokens.ios.d.ts} +175 -175
  8. package/dist/assets/tokens.semantic.d.ts +46 -0
  9. package/{foundation.d.ts → dist/assets/tokens.web.d.ts} +178 -171
  10. package/dist/color.css +79 -0
  11. package/dist/colors.cjs +79 -0
  12. package/dist/colors.mjs +79 -0
  13. package/dist/dark.mode.css +115 -0
  14. package/dist/dark.theme.css +78 -0
  15. package/dist/foundation.css +369 -0
  16. package/dist/icon.map.js +562 -0
  17. package/dist/iconStyles/iconColors.d.ts +148 -0
  18. package/dist/iconStyles/iconSizes.d.ts +16 -0
  19. package/dist/iconStyles/iconStyles.mobile.d.ts +1 -0
  20. package/dist/iconStyles/iconStyles.web.d.ts +2 -0
  21. package/dist/index.cjs +2462 -0
  22. package/dist/index.d.ts +50 -3
  23. package/dist/index.mjs +2447 -0
  24. package/dist/semantic.css +45 -0
  25. package/package.json +60 -41
  26. package/rollup.config.mjs +19 -0
  27. package/dist/icons/Icon.css.d.ts +0 -40
  28. package/dist/icons/IconColors.css.d.ts +0 -52
  29. package/dist/icons/Sizes.css.d.ts +0 -7
  30. package/dist/icons/getIcon.d.ts +0 -31
  31. package/dist/icons/getIcon.test.d.ts +0 -1
  32. package/dist/icons/iconStyles.d.ts +0 -278
  33. package/dist/index.js +0 -1305
  34. package/foundation.android.js +0 -352
  35. package/foundation.css +0 -440
  36. package/foundation.ios.js +0 -352
  37. package/foundation.js +0 -317
  38. package/foundation.native.js +0 -352
  39. package/foundation.scss +0 -319
  40. package/icons/Icon.css +0 -125
  41. package/icons/IconColors.css +0 -193
  42. package/icons/Sizes.css +0 -16
@@ -0,0 +1,148 @@
1
+ export declare const iconColors: {
2
+ tokens: {
3
+ white: {
4
+ value: string;
5
+ };
6
+ grey: {
7
+ value: string;
8
+ };
9
+ greyBlue: {
10
+ value: string;
11
+ };
12
+ greyBlueDark: {
13
+ value: string;
14
+ };
15
+ greyBlueLighter: {
16
+ value: string;
17
+ };
18
+ blue: {
19
+ value: string;
20
+ };
21
+ lightBlue: {
22
+ value: string;
23
+ };
24
+ green: {
25
+ value: string;
26
+ };
27
+ yellow: {
28
+ value: string;
29
+ };
30
+ red: {
31
+ value: string;
32
+ };
33
+ navy: {
34
+ value: string;
35
+ };
36
+ orange: {
37
+ value: string;
38
+ };
39
+ interactive: {
40
+ value: string;
41
+ };
42
+ interactiveHover: {
43
+ value: string;
44
+ };
45
+ destructive: {
46
+ value: string;
47
+ };
48
+ destructiveHover: {
49
+ value: string;
50
+ };
51
+ interactiveSubtle: {
52
+ value: string;
53
+ };
54
+ interactiveSubtleHover: {
55
+ value: string;
56
+ };
57
+ disabled: {
58
+ value: string;
59
+ };
60
+ disabledSecondary: {
61
+ value: string;
62
+ };
63
+ focus: {
64
+ value: string;
65
+ };
66
+ critical: {
67
+ value: string;
68
+ };
69
+ criticalSurface: {
70
+ value: string;
71
+ };
72
+ criticalOnSurface: {
73
+ value: string;
74
+ };
75
+ warning: {
76
+ value: string;
77
+ };
78
+ warningSurface: {
79
+ value: string;
80
+ };
81
+ warningOnSurface: {
82
+ value: string;
83
+ };
84
+ success: {
85
+ value: string;
86
+ };
87
+ successSurface: {
88
+ value: string;
89
+ };
90
+ successOnSurface: {
91
+ value: string;
92
+ };
93
+ informative: {
94
+ value: string;
95
+ };
96
+ informativeSurface: {
97
+ value: string;
98
+ };
99
+ informativeOnSurface: {
100
+ value: string;
101
+ };
102
+ inactive: {
103
+ value: string;
104
+ };
105
+ inactiveSurface: {
106
+ value: string;
107
+ };
108
+ inactiveOnSurface: {
109
+ value: string;
110
+ };
111
+ heading: {
112
+ value: string;
113
+ };
114
+ text: {
115
+ value: string;
116
+ };
117
+ textSecondary: {
118
+ value: string;
119
+ };
120
+ textReverse: {
121
+ value: string;
122
+ };
123
+ textReverseSecondary: {
124
+ value: string;
125
+ };
126
+ surface: {
127
+ value: string;
128
+ };
129
+ surfaceHover: {
130
+ value: string;
131
+ };
132
+ surfaceActive: {
133
+ value: string;
134
+ };
135
+ surfaceBackground: {
136
+ value: string;
137
+ };
138
+ surfaceReverse: {
139
+ value: string;
140
+ };
141
+ brand: {
142
+ value: string;
143
+ };
144
+ brandHighlight: {
145
+ value: string;
146
+ };
147
+ };
148
+ };
@@ -0,0 +1,16 @@
1
+ export declare const iconSizes: {
2
+ tokens: {
3
+ small: {
4
+ width: number;
5
+ height: number;
6
+ };
7
+ base: {
8
+ width: number;
9
+ height: number;
10
+ };
11
+ large: {
12
+ width: number;
13
+ height: number;
14
+ };
15
+ };
16
+ };
@@ -0,0 +1 @@
1
+ export declare const mobileIconStyles: Record<string, object>;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const webIconStyles: Record<string, React.CSSProperties>;