@drivy/cobalt 0.47.1 → 0.49.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 (93) hide show
  1. package/_virtual/_commonjsHelpers.js +6 -0
  2. package/_virtual/_commonjsHelpers.js.map +1 -0
  3. package/cjs/tokens/icons.js +3 -0
  4. package/cjs/tokens/icons.js.map +1 -1
  5. package/cjs/tokens/theme.js +4 -4
  6. package/components/Accordion/ToggleIcon.js +6 -2
  7. package/components/Accordion/ToggleIcon.js.map +1 -1
  8. package/components/Accordion/index.js +2 -2
  9. package/components/Accordion/index.js.map +1 -1
  10. package/components/Form/Stepper.js +7 -2
  11. package/components/Form/Stepper.js.map +1 -1
  12. package/components/Icon/__generated__/CircledArrowLeftIcon.js +22 -0
  13. package/components/Icon/__generated__/CircledArrowLeftIcon.js.map +1 -0
  14. package/components/Icon/__generated__/FilepdfIcon.js +21 -0
  15. package/components/Icon/__generated__/FilepdfIcon.js.map +1 -0
  16. package/components/Icon/__generated__/FilexlsIcon.js +21 -0
  17. package/components/Icon/__generated__/FilexlsIcon.js.map +1 -0
  18. package/components/Layout/Components/LayoutCard.js +2 -2
  19. package/components/Layout/Components/LayoutCard.js.map +1 -1
  20. package/components/Layout/Components/LayoutSection.js +2 -2
  21. package/components/Layout/Components/LayoutSection.js.map +1 -1
  22. package/components/Layout/Surfaces/index.js +6 -3
  23. package/components/Layout/Surfaces/index.js.map +1 -1
  24. package/components/Pagination/index.js +66 -0
  25. package/components/Pagination/index.js.map +1 -0
  26. package/components/Sidepanel/index.js +14 -10
  27. package/components/Sidepanel/index.js.map +1 -1
  28. package/icons/circled-arrow-left.js +4 -0
  29. package/icons/circled-arrow-left.js.map +1 -0
  30. package/icons/circled-arrow-left.svg +1 -0
  31. package/icons/filepdf.js +4 -0
  32. package/icons/filepdf.js.map +1 -0
  33. package/icons/filepdf.svg +1 -0
  34. package/icons/filexls.js +4 -0
  35. package/icons/filexls.js.map +1 -0
  36. package/icons/filexls.svg +1 -0
  37. package/icons/index.js +3 -0
  38. package/icons/index.js.map +1 -1
  39. package/index.js +4 -0
  40. package/index.js.map +1 -1
  41. package/package.json +30 -34
  42. package/src/tokens/breakpoints.js +13 -0
  43. package/src/tokens/breakpoints.js.map +1 -0
  44. package/src/tokens/colors.js +57 -0
  45. package/src/tokens/colors.js.map +1 -0
  46. package/src/tokens/palette.js +163 -0
  47. package/src/tokens/palette.js.map +1 -0
  48. package/src/tokens/theme.js +332 -0
  49. package/src/tokens/theme.js.map +1 -0
  50. package/src/tokens/zIndexes.js +35 -0
  51. package/src/tokens/zIndexes.js.map +1 -0
  52. package/styles/components/Accordion/index.scss +9 -0
  53. package/styles/components/Form/Stepper.scss +6 -5
  54. package/styles/components/Form/TextInput.scss +1 -1
  55. package/styles/components/Form/form.scss +5 -1
  56. package/styles/components/Layout/Components/index.scss +20 -33
  57. package/styles/components/Layout/Surfaces/index.scss +9 -10
  58. package/styles/components/Pagination/index.scss +14 -0
  59. package/styles/components/Sidepanel/index.scss +29 -1
  60. package/styles/components.scss +1 -0
  61. package/styles/core/{default-theme.scss → default-theme.css} +4 -4
  62. package/styles/core/{theme.scss → theme.css} +4 -4
  63. package/styles/core/z-index.scss +3 -1
  64. package/tokens/icons.js +3 -0
  65. package/tokens/icons.js.map +1 -1
  66. package/tokens/theme.js +4 -4
  67. package/types/src/components/Accordion/ToggleIcon.d.ts +2 -1
  68. package/types/src/components/Accordion/index.d.ts +4 -0
  69. package/types/src/components/Form/Autocomplete/index.d.ts +1 -1
  70. package/types/src/components/Form/TextInput.d.ts +1 -1
  71. package/types/src/components/Icon/__generated__/CircledArrowLeftIcon.d.ts +10 -0
  72. package/types/src/components/Icon/__generated__/FilepdfIcon.d.ts +10 -0
  73. package/types/src/components/Icon/__generated__/FilexlsIcon.d.ts +10 -0
  74. package/types/src/components/Icon/__generated__/index.d.ts +3 -0
  75. package/types/src/components/Icon/index.d.ts +1 -1
  76. package/types/src/components/Layout/Components/LayoutCard.d.ts +2 -1
  77. package/types/src/components/Layout/Components/LayoutSection.d.ts +2 -1
  78. package/types/src/components/Layout/Surfaces/index.d.ts +6 -3
  79. package/types/src/components/Pagination/index.d.ts +7 -0
  80. package/types/src/components/Sidepanel/index.d.ts +5 -2
  81. package/types/src/icons/index.d.ts +3 -0
  82. package/types/src/index.d.ts +1 -0
  83. package/types/src/tokens/index.d.ts +3 -0
  84. package/utilities.css +4 -18310
  85. package/utils/getCobaltTailwindcssConfig.js +8 -0
  86. package/utils/getCobaltTailwindcssConfig.js.map +1 -0
  87. package/utils/getCobaltTailwindcssConfig2.js +372 -0
  88. package/utils/getCobaltTailwindcssConfig2.js.map +1 -0
  89. package/utils/helpers.js +161 -0
  90. package/utils/helpers.js.map +1 -0
  91. package/utils/tailwindcssGenerators.js +187 -0
  92. package/utils/tailwindcssGenerators.js.map +1 -0
  93. /package/styles/core/{palette.scss → palette.css} +0 -0
@@ -0,0 +1,187 @@
1
+ import require$$0 from '../src/tokens/breakpoints.js';
2
+ import { __require as requireHelpers } from './helpers.js';
3
+
4
+ var tailwindcssGenerators;
5
+ var hasRequiredTailwindcssGenerators;
6
+
7
+ function requireTailwindcssGenerators () {
8
+ if (hasRequiredTailwindcssGenerators) return tailwindcssGenerators;
9
+ hasRequiredTailwindcssGenerators = 1;
10
+ const breakpoints = require$$0;
11
+ const { hasProp } = requireHelpers();
12
+
13
+ const COLOR_STATES = {
14
+ DEFAULT: "DEFAULT",
15
+ HOVER: "hover",
16
+ PRESS: "press",
17
+ };
18
+
19
+ const textGenerator = ({ addUtilities, theme }) => {
20
+ const textTheme = theme("customText");
21
+ const mediaQueries = {};
22
+ const textUtilities = Object.keys(textTheme).reduce((acc, propName) => {
23
+ const props = textTheme[propName];
24
+ acc[`.text-${propName}`] = {
25
+ fontFamily: props.fontFamily,
26
+ fontSize: props.fontSize,
27
+ lineHeight: props.lineHeight,
28
+ }
29
+ ;["fontWeight", "textTransform", "color", "letterSpacing"].forEach(
30
+ (cssPropName) => {
31
+ if (props[cssPropName]) {
32
+ acc[`.text-${propName}`][cssPropName] = props[cssPropName];
33
+ }
34
+ }
35
+ );
36
+ if (props.from) {
37
+ Object.keys(props.from).forEach((breakpoint) => {
38
+ const breakpointRule = `@media (min-width: ${breakpoints[breakpoint]})`;
39
+ if (!hasProp(mediaQueries, breakpointRule)) {
40
+ mediaQueries[breakpointRule] = {};
41
+ }
42
+ mediaQueries[breakpointRule] = {
43
+ ...mediaQueries[breakpointRule],
44
+ [`.text-${propName}`]: props.from[breakpoint],
45
+ };
46
+ });
47
+ }
48
+ return acc
49
+ }, {});
50
+ // For CSS priority, we have to put media queries after all text utilities
51
+ addUtilities(
52
+ { ...textUtilities, ...mediaQueries },
53
+ { variants: ["responsive"] }
54
+ );
55
+ };
56
+
57
+ const borderWidthGenerator = ({ addUtilities, theme }) => {
58
+ const widthTheme = theme("borderWidth");
59
+ const widthUtilities = Object.keys(widthTheme).reduce((acc, propName) => {
60
+ const modifier = propName === "DEFAULT" ? "" : `-${propName}`;
61
+ // add default solid style only if width is not 0
62
+ const styleProp =
63
+ widthTheme[propName] === "0" ? {} : { borderStyle: "solid" };
64
+ acc[`.border${modifier}`] = {
65
+ borderWidth: widthTheme[propName],
66
+ ...styleProp,
67
+ };
68
+ acc[`.border-t${modifier}`] = {
69
+ borderTopWidth: widthTheme[propName],
70
+ ...styleProp,
71
+ };
72
+ acc[`.border-r${modifier}`] = {
73
+ borderRightWidth: widthTheme[propName],
74
+ ...styleProp,
75
+ };
76
+ acc[`.border-b${modifier}`] = {
77
+ borderBottomWidth: widthTheme[propName],
78
+ ...styleProp,
79
+ };
80
+ acc[`.border-l${modifier}`] = {
81
+ borderLeftWidth: widthTheme[propName],
82
+ ...styleProp,
83
+ };
84
+ return acc
85
+ }, {});
86
+ addUtilities(widthUtilities);
87
+ };
88
+
89
+ const borderStyleGenerator = ({ addUtilities, theme }) => {
90
+ const styleTheme = theme("borderStyle");
91
+ const styleUtilities = Object.keys(styleTheme).reduce((acc, propName) => {
92
+ acc[`.border-${propName}`] = { borderStyle: styleTheme[propName] };
93
+ return acc
94
+ }, {});
95
+ addUtilities(styleUtilities);
96
+ };
97
+
98
+ const getSemanticColorGenerator = ({
99
+ type,
100
+ classPrefix,
101
+ selectorSuffix = "",
102
+ cssProperty,
103
+ cssProperty2,
104
+ enableInteractiveColors = true,
105
+ }) => {
106
+ return ({ addUtilities, theme }) => {
107
+ const themeProps = theme(type);
108
+ if (!themeProps)
109
+ throw new Error(`Didn't found theme properties for "${type}".`)
110
+ const utilities = Object.keys(themeProps).reduce((acc, propName) => {
111
+ const colorProp = themeProps[propName];
112
+ if (typeof colorProp === "string") {
113
+ acc[`.${classPrefix}-${propName}${selectorSuffix}`] = {
114
+ [cssProperty]: colorProp,
115
+ ...cssProperty2 ? { [cssProperty2]: colorProp } : {},
116
+ };
117
+ } else {
118
+ Object.keys(colorProp).map((colorState) => {
119
+ const subColorProp = colorProp[colorState];
120
+ if (colorState === COLOR_STATES.DEFAULT) {
121
+ acc[`.${classPrefix}-${propName}${selectorSuffix}`] = {
122
+ [cssProperty]: subColorProp,
123
+ ...cssProperty2 ? { [cssProperty2]: subColorProp } : {},
124
+ };
125
+ } else if (colorState === COLOR_STATES.HOVER && enableInteractiveColors) {
126
+ acc[`.${classPrefix}-${propName}:hover${selectorSuffix}`] = {
127
+ [cssProperty]: subColorProp,
128
+ ...cssProperty2 ? { [cssProperty2]: subColorProp } : {},
129
+ };
130
+ acc[`.${classPrefix}-${propName}:focus${selectorSuffix}`] = {
131
+ [cssProperty]: subColorProp,
132
+ ...cssProperty2 ? { [cssProperty2]: subColorProp } : {},
133
+ };
134
+ } else if (colorState === COLOR_STATES.PRESS && enableInteractiveColors) {
135
+ acc[`.${classPrefix}-${propName}:active${selectorSuffix}`] = {
136
+ [cssProperty]: subColorProp,
137
+ ...cssProperty2 ? { [cssProperty2]: subColorProp } : {},
138
+ };
139
+ } else if (typeof subColorProp === "string") {
140
+ acc[`.${classPrefix}-${propName}-${colorState}`] = {
141
+ [cssProperty]: subColorProp,
142
+ ...cssProperty2 ? { [cssProperty2]: subColorProp } : {},
143
+ };
144
+ } else {
145
+ Object.keys(colorProp).map((subColorState) => {
146
+ const subSubColorProp = colorProp[colorState][subColorState];
147
+ if (subColorState === COLOR_STATES.DEFAULT) {
148
+ acc[`.${classPrefix}-${propName}${selectorSuffix}`] = {
149
+ [cssProperty]: subSubColorProp,
150
+ ...cssProperty2 ? { [cssProperty2]: subSubColorProp } : {},
151
+ };
152
+ } else if (subColorState === COLOR_STATES.HOVER && enableInteractiveColors) {
153
+ acc[`.${classPrefix}-${propName}:hover${selectorSuffix}`] = {
154
+ [cssProperty]: subSubColorProp,
155
+ ...cssProperty2 ? { [cssProperty2]: subSubColorProp } : {},
156
+ };
157
+ acc[`.${classPrefix}-${propName}:focus${selectorSuffix}`] = {
158
+ [cssProperty]: subSubColorProp,
159
+ ...cssProperty2 ? { [cssProperty2]: subSubColorProp } : {},
160
+ };
161
+ } else if (subColorState === COLOR_STATES.PRESS && enableInteractiveColors) {
162
+ acc[`.${classPrefix}-${propName}:active${selectorSuffix}`] = {
163
+ [cssProperty]: subSubColorProp,
164
+ ...cssProperty2 ? { [cssProperty2]: subSubColorProp } : {},
165
+ };
166
+ }
167
+ });
168
+ }
169
+ });
170
+ }
171
+ return acc
172
+ }, {});
173
+ addUtilities(utilities);
174
+ }
175
+ };
176
+
177
+ tailwindcssGenerators = {
178
+ text: textGenerator,
179
+ borderWidth: borderWidthGenerator,
180
+ borderStyle: borderStyleGenerator,
181
+ getSemanticColorGenerator,
182
+ };
183
+ return tailwindcssGenerators;
184
+ }
185
+
186
+ export { requireTailwindcssGenerators as __require };
187
+ //# sourceMappingURL=tailwindcssGenerators.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tailwindcssGenerators.js","sources":["../../utils/tailwindcssGenerators.js"],"sourcesContent":["const breakpoints = require(\"../src/tokens/breakpoints.json\")\nconst { hasProp } = require(\"./helpers\")\n\nconst COLOR_STATES = {\n DEFAULT: \"DEFAULT\",\n HOVER: \"hover\",\n PRESS: \"press\",\n}\n\nconst textGenerator = ({ addUtilities, theme }) => {\n const textTheme = theme(\"customText\")\n const mediaQueries = {}\n const textUtilities = Object.keys(textTheme).reduce((acc, propName) => {\n const props = textTheme[propName]\n acc[`.text-${propName}`] = {\n fontFamily: props.fontFamily,\n fontSize: props.fontSize,\n lineHeight: props.lineHeight,\n }\n ;[\"fontWeight\", \"textTransform\", \"color\", \"letterSpacing\"].forEach(\n (cssPropName) => {\n if (props[cssPropName]) {\n acc[`.text-${propName}`][cssPropName] = props[cssPropName]\n }\n }\n )\n if (props.from) {\n Object.keys(props.from).forEach((breakpoint) => {\n const breakpointRule = `@media (min-width: ${breakpoints[breakpoint]})`\n if (!hasProp(mediaQueries, breakpointRule)) {\n mediaQueries[breakpointRule] = {}\n }\n mediaQueries[breakpointRule] = {\n ...mediaQueries[breakpointRule],\n [`.text-${propName}`]: props.from[breakpoint],\n }\n })\n }\n return acc\n }, {})\n // For CSS priority, we have to put media queries after all text utilities\n addUtilities(\n { ...textUtilities, ...mediaQueries },\n { variants: [\"responsive\"] }\n )\n}\n\nconst borderWidthGenerator = ({ addUtilities, theme }) => {\n const widthTheme = theme(\"borderWidth\")\n const widthUtilities = Object.keys(widthTheme).reduce((acc, propName) => {\n const modifier = propName === \"DEFAULT\" ? \"\" : `-${propName}`\n // add default solid style only if width is not 0\n const styleProp =\n widthTheme[propName] === \"0\" ? {} : { borderStyle: \"solid\" }\n acc[`.border${modifier}`] = {\n borderWidth: widthTheme[propName],\n ...styleProp,\n }\n acc[`.border-t${modifier}`] = {\n borderTopWidth: widthTheme[propName],\n ...styleProp,\n }\n acc[`.border-r${modifier}`] = {\n borderRightWidth: widthTheme[propName],\n ...styleProp,\n }\n acc[`.border-b${modifier}`] = {\n borderBottomWidth: widthTheme[propName],\n ...styleProp,\n }\n acc[`.border-l${modifier}`] = {\n borderLeftWidth: widthTheme[propName],\n ...styleProp,\n }\n return acc\n }, {})\n addUtilities(widthUtilities)\n}\n\nconst borderStyleGenerator = ({ addUtilities, theme }) => {\n const styleTheme = theme(\"borderStyle\")\n const styleUtilities = Object.keys(styleTheme).reduce((acc, propName) => {\n acc[`.border-${propName}`] = { borderStyle: styleTheme[propName] }\n return acc\n }, {})\n addUtilities(styleUtilities)\n}\n\nconst getSemanticColorGenerator = ({\n type,\n classPrefix,\n selectorSuffix = \"\",\n cssProperty,\n cssProperty2,\n enableInteractiveColors = true,\n}) => {\n return ({ addUtilities, theme }) => {\n const themeProps = theme(type)\n if (!themeProps)\n throw new Error(`Didn't found theme properties for \"${type}\".`)\n const utilities = Object.keys(themeProps).reduce((acc, propName) => {\n const colorProp = themeProps[propName]\n if (typeof colorProp === \"string\") {\n acc[`.${classPrefix}-${propName}${selectorSuffix}`] = {\n [cssProperty]: colorProp,\n ...cssProperty2 ? { [cssProperty2]: colorProp } : {},\n }\n } else {\n Object.keys(colorProp).map((colorState) => {\n const subColorProp = colorProp[colorState]\n if (colorState === COLOR_STATES.DEFAULT) {\n acc[`.${classPrefix}-${propName}${selectorSuffix}`] = {\n [cssProperty]: subColorProp,\n ...cssProperty2 ? { [cssProperty2]: subColorProp } : {},\n }\n } else if (colorState === COLOR_STATES.HOVER && enableInteractiveColors) {\n acc[`.${classPrefix}-${propName}:hover${selectorSuffix}`] = {\n [cssProperty]: subColorProp,\n ...cssProperty2 ? { [cssProperty2]: subColorProp } : {},\n }\n acc[`.${classPrefix}-${propName}:focus${selectorSuffix}`] = {\n [cssProperty]: subColorProp,\n ...cssProperty2 ? { [cssProperty2]: subColorProp } : {},\n }\n } else if (colorState === COLOR_STATES.PRESS && enableInteractiveColors) {\n acc[`.${classPrefix}-${propName}:active${selectorSuffix}`] = {\n [cssProperty]: subColorProp,\n ...cssProperty2 ? { [cssProperty2]: subColorProp } : {},\n }\n } else if (typeof subColorProp === \"string\") {\n acc[`.${classPrefix}-${propName}-${colorState}`] = {\n [cssProperty]: subColorProp,\n ...cssProperty2 ? { [cssProperty2]: subColorProp } : {},\n }\n } else {\n Object.keys(colorProp).map((subColorState) => {\n const subSubColorProp = colorProp[colorState][subColorState]\n if (subColorState === COLOR_STATES.DEFAULT) {\n acc[`.${classPrefix}-${propName}${selectorSuffix}`] = {\n [cssProperty]: subSubColorProp,\n ...cssProperty2 ? { [cssProperty2]: subSubColorProp } : {},\n }\n } else if (subColorState === COLOR_STATES.HOVER && enableInteractiveColors) {\n acc[`.${classPrefix}-${propName}:hover${selectorSuffix}`] = {\n [cssProperty]: subSubColorProp,\n ...cssProperty2 ? { [cssProperty2]: subSubColorProp } : {},\n }\n acc[`.${classPrefix}-${propName}:focus${selectorSuffix}`] = {\n [cssProperty]: subSubColorProp,\n ...cssProperty2 ? { [cssProperty2]: subSubColorProp } : {},\n }\n } else if (subColorState === COLOR_STATES.PRESS && enableInteractiveColors) {\n acc[`.${classPrefix}-${propName}:active${selectorSuffix}`] = {\n [cssProperty]: subSubColorProp,\n ...cssProperty2 ? { [cssProperty2]: subSubColorProp } : {},\n }\n }\n })\n }\n })\n }\n return acc\n }, {})\n addUtilities(utilities)\n }\n}\n\nmodule.exports = {\n text: textGenerator,\n borderWidth: borderWidthGenerator,\n borderStyle: borderStyleGenerator,\n getSemanticColorGenerator,\n}\n"],"names":["require$$1"],"mappings":"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"}
File without changes