@prokodo/ui 0.1.3 → 0.1.5

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 (122) hide show
  1. package/dist/components/accordion/Accordion.css +288 -0
  2. package/dist/components/accordion/Accordion.module.css +288 -0
  3. package/dist/components/accordion/Accordion.view.js +110 -114
  4. package/dist/components/animated/Animated.css +158 -0
  5. package/dist/components/animated/Animated.module.css +158 -0
  6. package/dist/components/avatar/Avatar.css +190 -0
  7. package/dist/components/avatar/Avatar.module.css +190 -0
  8. package/dist/components/button/Button.css +318 -0
  9. package/dist/components/button/Button.module.css +318 -0
  10. package/dist/components/card/Card.css +267 -0
  11. package/dist/components/card/Card.module.css +267 -0
  12. package/dist/components/card/{Card.base.module.scss.js → Card.module.scss.js} +7 -0
  13. package/dist/components/card/Card.view.js +1 -11
  14. package/dist/components/carousel/Carousel.css +236 -0
  15. package/dist/components/carousel/Carousel.module.css +236 -0
  16. package/dist/components/chip/Chip.css +265 -0
  17. package/dist/components/chip/Chip.module.css +265 -0
  18. package/dist/components/dialog/Dialog.css +314 -0
  19. package/dist/components/dialog/Dialog.module.css +314 -0
  20. package/dist/components/drawer/Drawer.css +240 -0
  21. package/dist/components/drawer/Drawer.module.css +240 -0
  22. package/dist/components/drawer/Drawer.view.js +1 -1
  23. package/dist/components/dynamic-list/DynamicList.css +199 -0
  24. package/dist/components/dynamic-list/DynamicList.module.css +199 -0
  25. package/dist/components/form/Form.css +154 -0
  26. package/dist/components/form/Form.module.css +154 -0
  27. package/dist/components/form/Form.module.scss.js +2 -1
  28. package/dist/components/form/FormField.client.js +1 -1
  29. package/dist/components/form/FormField.server.js +1 -1
  30. package/dist/components/form/FormResponse.css +168 -0
  31. package/dist/components/form/FormResponse.module.css +168 -0
  32. package/dist/components/grid/Grid.css +333 -0
  33. package/dist/components/grid/Grid.module.css +333 -0
  34. package/dist/components/grid/Grid.module.scss.js +65 -1
  35. package/dist/components/grid/GridRow.js +1 -1
  36. package/dist/components/headline/Headline.css +322 -0
  37. package/dist/components/headline/Headline.js +19 -26
  38. package/dist/components/headline/Headline.module.css +322 -0
  39. package/dist/components/headline/{Headline.base.module.scss.js → Headline.module.scss.js} +7 -0
  40. package/dist/components/icon/Icon.css +181 -0
  41. package/dist/components/icon/Icon.module.css +181 -0
  42. package/dist/components/image/Image.client.js +63 -10
  43. package/dist/components/image/Image.css +167 -0
  44. package/dist/components/image/Image.js +2 -0
  45. package/dist/components/image/Image.module.css +167 -0
  46. package/dist/components/image/Image.server.js +11 -15
  47. package/dist/components/image-text/ImageText.css +196 -0
  48. package/dist/components/image-text/ImageText.module.css +196 -0
  49. package/dist/components/input/Input.css +353 -0
  50. package/dist/components/input/Input.module.css +353 -0
  51. package/dist/components/inputOTP/InputOTP.css +155 -0
  52. package/dist/components/inputOTP/InputOTP.module.css +155 -0
  53. package/dist/components/label/Label.css +174 -0
  54. package/dist/components/label/Label.module.css +174 -0
  55. package/dist/components/link/Link.css +192 -0
  56. package/dist/components/link/Link.module.css +192 -0
  57. package/dist/components/list/List.css +365 -0
  58. package/dist/components/list/List.module.css +365 -0
  59. package/dist/components/lottie/Lottie.css +129 -0
  60. package/dist/components/lottie/Lottie.module.css +129 -0
  61. package/dist/components/post-item/PostItem.css +295 -0
  62. package/dist/components/post-item/PostItem.module.css +295 -0
  63. package/dist/components/post-item/PostItemAuthor.css +156 -0
  64. package/dist/components/post-item/PostItemAuthor.module.css +156 -0
  65. package/dist/components/post-teaser/PostTeaser.css +259 -0
  66. package/dist/components/post-teaser/PostTeaser.module.css +259 -0
  67. package/dist/components/post-widget/PostWidget.css +214 -0
  68. package/dist/components/post-widget/PostWidget.module.css +214 -0
  69. package/dist/components/post-widget-carousel/PostWidgetCarousel.css +181 -0
  70. package/dist/components/post-widget-carousel/PostWidgetCarousel.module.css +181 -0
  71. package/dist/components/progressBar/ProgressBar.css +205 -0
  72. package/dist/components/progressBar/ProgressBar.module.css +205 -0
  73. package/dist/components/quote/Quote.css +204 -0
  74. package/dist/components/quote/Quote.module.css +204 -0
  75. package/dist/components/rating/Rating.css +247 -0
  76. package/dist/components/rating/Rating.module.css +247 -0
  77. package/dist/components/rich-text/RichText.css +290 -0
  78. package/dist/components/rich-text/RichText.module.css +290 -0
  79. package/dist/components/select/Select.css +448 -0
  80. package/dist/components/select/Select.module.css +448 -0
  81. package/dist/components/sidenav/SideNav.css +292 -0
  82. package/dist/components/sidenav/SideNav.module.css +292 -0
  83. package/dist/components/skeleton/Skeleton.css +192 -0
  84. package/dist/components/skeleton/Skeleton.js +17 -21
  85. package/dist/components/skeleton/Skeleton.module.css +192 -0
  86. package/dist/components/slider/Slider.css +307 -0
  87. package/dist/components/slider/Slider.module.css +307 -0
  88. package/dist/components/snackbar/Snackbar.css +214 -0
  89. package/dist/components/snackbar/Snackbar.module.css +214 -0
  90. package/dist/components/stepper/Stepper.css +347 -0
  91. package/dist/components/stepper/Stepper.module.css +347 -0
  92. package/dist/components/switch/Switch.css +256 -0
  93. package/dist/components/switch/Switch.module.css +256 -0
  94. package/dist/components/table/Table.css +252 -0
  95. package/dist/components/table/Table.module.css +252 -0
  96. package/dist/components/table/Table.module.scss.js +4 -1
  97. package/dist/components/table/TableCell.js +1 -1
  98. package/dist/components/teaser/Teaser.css +203 -0
  99. package/dist/components/teaser/Teaser.module.css +203 -0
  100. package/dist/constants/project.js +1 -1
  101. package/dist/theme.css +5058 -0
  102. package/dist/tsconfig.build.tsbuildinfo +1 -1
  103. package/package.json +48 -5
  104. package/dist/components/accordion/Accordion.effects.client.js +0 -16
  105. package/dist/components/accordion/Accordion.effects.module.scss.js +0 -8
  106. package/dist/components/card/Card.effects.client.js +0 -20
  107. package/dist/components/card/Card.effects.module.scss.js +0 -14
  108. package/dist/components/form/FormField.module.scss.js +0 -6
  109. package/dist/components/grid/GridRow.module.scss.js +0 -69
  110. package/dist/components/headline/Headline.effects.client.js +0 -14
  111. package/dist/components/headline/Headline.effects.module.scss.js +0 -13
  112. package/dist/components/skeleton/Skeleton.effects.client.js +0 -18
  113. package/dist/components/skeleton/Skeleton.effects.module.scss.js +0 -7
  114. package/dist/components/table/TableCell.module.scss.js +0 -8
  115. package/dist/types/components/accordion/Accordion.effects.client.d.ts +0 -5
  116. package/dist/types/components/card/Card.effects.client.d.ts +0 -7
  117. package/dist/types/components/headline/Headline.effects.client.d.ts +0 -1
  118. package/dist/types/components/skeleton/Skeleton.effects.client.d.ts +0 -5
  119. package/dist/ui.css +0 -10776
  120. /package/dist/components/accordion/{Accordion.base.module.scss.js → Accordion.module.scss.js} +0 -0
  121. /package/dist/components/drawer/{Drawer.base.module.scss.js → Drawer.module.scss.js} +0 -0
  122. /package/dist/components/skeleton/{Skeleton.base.module.scss.js → Skeleton.module.scss.js} +0 -0
package/package.json CHANGED
@@ -1,13 +1,16 @@
1
1
  {
2
2
  "name": "@prokodo/ui",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "type": "module",
5
5
  "description": "UI components for production-grade Next.js + Headless CMS (Strapi, Contentful, Headless WordPress) websites by prokodo – built for Core Web Vitals & SEO.",
6
- "sideEffects": false,
6
+ "sideEffects": [
7
+ "**/*.css",
8
+ "**/*.scss"
9
+ ],
7
10
  "module": "dist/index.es.js",
8
11
  "types": "dist/types/index.d.ts",
9
12
  "exports": {
10
- "./theme.css": "./dist/ui.css",
13
+ "./theme.css": "./dist/theme.css",
11
14
  ".": {
12
15
  "types": "./dist/types/index.d.ts",
13
16
  "import": "./dist/index.js"
@@ -28,10 +31,12 @@
28
31
  "import": "./dist/components/accordion/index.js",
29
32
  "types": "./dist/types/components/accordion/index.d.ts"
30
33
  },
34
+ "./accordion.css": "./dist/components/accordion/Accordion.css",
31
35
  "./animated": {
32
36
  "import": "./dist/components/animated/index.js",
33
37
  "types": "./dist/types/components/animated/index.d.ts"
34
38
  },
39
+ "./animated.css": "./dist/components/animated/Animated.css",
35
40
  "./animatedText": {
36
41
  "import": "./dist/components/animatedText/index.js",
37
42
  "types": "./dist/types/components/animatedText/index.d.ts"
@@ -40,6 +45,7 @@
40
45
  "import": "./dist/components/avatar/index.js",
41
46
  "types": "./dist/types/components/avatar/index.d.ts"
42
47
  },
48
+ "./avatar.css": "./dist/components/avatar/Avatar.css",
43
49
  "./base-link": {
44
50
  "import": "./dist/components/base-link/index.js",
45
51
  "types": "./dist/types/components/base-link/index.d.ts"
@@ -48,6 +54,7 @@
48
54
  "import": "./dist/components/button/index.js",
49
55
  "types": "./dist/types/components/button/index.d.ts"
50
56
  },
57
+ "./button.css": "./dist/components/button/Button.css",
51
58
  "./calendly": {
52
59
  "import": "./dist/components/calendly/index.js",
53
60
  "types": "./dist/types/components/calendly/index.d.ts"
@@ -56,14 +63,17 @@
56
63
  "import": "./dist/components/card/index.js",
57
64
  "types": "./dist/types/components/card/index.d.ts"
58
65
  },
66
+ "./card.css": "./dist/components/card/Card.css",
59
67
  "./carousel": {
60
68
  "import": "./dist/components/carousel/index.js",
61
69
  "types": "./dist/types/components/carousel/index.d.ts"
62
70
  },
71
+ "./carousel.css": "./dist/components/carousel/Carousel.css",
63
72
  "./chip": {
64
73
  "import": "./dist/components/chip/index.js",
65
74
  "types": "./dist/types/components/chip/index.d.ts"
66
75
  },
76
+ "./chip.css": "./dist/components/chip/Chip.css",
67
77
  "./datePicker": {
68
78
  "import": "./dist/components/datePicker/index.js",
69
79
  "types": "./dist/types/components/datePicker/index.d.ts"
@@ -72,58 +82,72 @@
72
82
  "import": "./dist/components/dialog/index.js",
73
83
  "types": "./dist/types/components/dialog/index.d.ts"
74
84
  },
85
+ "./dialog.css": "./dist/components/dialog/Dialog.css",
75
86
  "./drawer": {
76
87
  "import": "./dist/components/drawer/index.js",
77
88
  "types": "./dist/types/components/drawer/index.d.ts"
78
89
  },
90
+ "./drawer.css": "./dist/components/drawer/Drawer.css",
79
91
  "./dynamic-list": {
80
92
  "import": "./dist/components/dynamic-list/index.js",
81
93
  "types": "./dist/types/components/dynamic-list/index.d.ts"
82
94
  },
95
+ "./dynamic-list.css": "./dist/components/dynamic-list/DynamicList.css",
83
96
  "./form": {
84
97
  "import": "./dist/components/form/index.js",
85
98
  "types": "./dist/types/components/form/index.d.ts"
86
99
  },
100
+ "./form.css": "./dist/components/form/Form.css",
87
101
  "./grid": {
88
102
  "import": "./dist/components/grid/index.js",
89
103
  "types": "./dist/types/components/grid/index.d.ts"
90
104
  },
105
+ "./grid.css": "./dist/components/grid/Grid.css",
91
106
  "./headline": {
92
107
  "import": "./dist/components/headline/index.js",
93
108
  "types": "./dist/types/components/headline/index.d.ts"
94
109
  },
110
+ "./headline.css": "./dist/components/headline/Headline.css",
95
111
  "./icon": {
96
112
  "import": "./dist/components/icon/index.js",
97
113
  "types": "./dist/types/components/icon/index.d.ts"
98
114
  },
115
+ "./icon.css": "./dist/components/icon/Icon.css",
99
116
  "./image": {
100
117
  "import": "./dist/components/image/index.js",
101
118
  "types": "./dist/types/components/image/index.d.ts"
102
119
  },
120
+ "./image.css": "./dist/components/image/Image.css",
103
121
  "./image-text": {
104
122
  "import": "./dist/components/image-text/index.js",
105
123
  "types": "./dist/types/components/image-text/index.d.ts"
106
124
  },
125
+ "./image-text.css": "./dist/components/image-text/ImageText.css",
107
126
  "./input": {
108
127
  "import": "./dist/components/input/index.js",
109
128
  "types": "./dist/types/components/input/index.d.ts"
110
129
  },
130
+ "./input.css": "./dist/components/input/Input.css",
111
131
  "./inputOTP": {
112
132
  "import": "./dist/components/inputOTP/index.js",
113
133
  "types": "./dist/types/components/inputOTP/index.d.ts"
114
134
  },
135
+ "./inputOTP.css": "./dist/components/inputOTP/InputOTP.css",
115
136
  "./label": {
116
137
  "import": "./dist/components/label/index.js",
117
138
  "types": "./dist/types/components/label/index.d.ts"
118
139
  },
140
+ "./label.css": "./dist/components/label/Label.css",
119
141
  "./link": {
120
142
  "import": "./dist/components/link/index.js",
121
143
  "types": "./dist/types/components/link/index.d.ts"
122
144
  },
145
+ "./link.css": "./dist/components/link/Link.css",
123
146
  "./list": {
124
147
  "import": "./dist/components/list/index.js",
125
148
  "types": "./dist/types/components/list/index.d.ts"
126
149
  },
150
+ "./list.css": "./dist/components/list/List.css",
127
151
  "./loading": {
128
152
  "import": "./dist/components/loading/index.js",
129
153
  "types": "./dist/types/components/loading/index.d.ts"
@@ -132,6 +156,7 @@
132
156
  "import": "./dist/components/lottie/index.js",
133
157
  "types": "./dist/types/components/lottie/index.d.ts"
134
158
  },
159
+ "./lottie.css": "./dist/components/lottie/Lottie.css",
135
160
  "./map": {
136
161
  "import": "./dist/components/map/index.js",
137
162
  "types": "./dist/types/components/map/index.d.ts"
@@ -140,70 +165,87 @@
140
165
  "import": "./dist/components/post-item/index.js",
141
166
  "types": "./dist/types/components/post-item/index.d.ts"
142
167
  },
168
+ "./post-item.css": "./dist/components/post-item/PostItem.css",
143
169
  "./post-teaser": {
144
170
  "import": "./dist/components/post-teaser/index.js",
145
171
  "types": "./dist/types/components/post-teaser/index.d.ts"
146
172
  },
173
+ "./post-teaser.css": "./dist/components/post-teaser/PostTeaser.css",
147
174
  "./post-widget": {
148
175
  "import": "./dist/components/post-widget/index.js",
149
176
  "types": "./dist/types/components/post-widget/index.d.ts"
150
177
  },
178
+ "./post-widget.css": "./dist/components/post-widget/PostWidget.css",
151
179
  "./post-widget-carousel": {
152
180
  "import": "./dist/components/post-widget-carousel/index.js",
153
181
  "types": "./dist/types/components/post-widget-carousel/index.d.ts"
154
182
  },
183
+ "./post-widget-carousel.css": "./dist/components/post-widget-carousel/PostWidgetCarousel.css",
155
184
  "./progressBar": {
156
185
  "import": "./dist/components/progressBar/index.js",
157
186
  "types": "./dist/types/components/progressBar/index.d.ts"
158
187
  },
188
+ "./progressBar.css": "./dist/components/progressBar/ProgressBar.css",
159
189
  "./quote": {
160
190
  "import": "./dist/components/quote/index.js",
161
191
  "types": "./dist/types/components/quote/index.d.ts"
162
192
  },
193
+ "./quote.css": "./dist/components/quote/Quote.css",
163
194
  "./rating": {
164
195
  "import": "./dist/components/rating/index.js",
165
196
  "types": "./dist/types/components/rating/index.d.ts"
166
197
  },
198
+ "./rating.css": "./dist/components/rating/Rating.css",
167
199
  "./rich-text": {
168
200
  "import": "./dist/components/rich-text/index.js",
169
201
  "types": "./dist/types/components/rich-text/index.d.ts"
170
202
  },
203
+ "./rich-text.css": "./dist/components/rich-text/RichText.css",
171
204
  "./select": {
172
205
  "import": "./dist/components/select/index.js",
173
206
  "types": "./dist/types/components/select/index.d.ts"
174
207
  },
208
+ "./select.css": "./dist/components/select/Select.css",
175
209
  "./sidenav": {
176
210
  "import": "./dist/components/sidenav/index.js",
177
211
  "types": "./dist/types/components/sidenav/index.d.ts"
178
212
  },
213
+ "./sidenav.css": "./dist/components/sidenav/SideNav.css",
179
214
  "./skeleton": {
180
215
  "import": "./dist/components/skeleton/index.js",
181
216
  "types": "./dist/types/components/skeleton/index.d.ts"
182
217
  },
218
+ "./skeleton.css": "./dist/components/skeleton/Skeleton.css",
183
219
  "./slider": {
184
220
  "import": "./dist/components/slider/index.js",
185
221
  "types": "./dist/types/components/slider/index.d.ts"
186
222
  },
223
+ "./slider.css": "./dist/components/slider/Slider.css",
187
224
  "./snackbar": {
188
225
  "import": "./dist/components/snackbar/index.js",
189
226
  "types": "./dist/types/components/snackbar/index.d.ts"
190
227
  },
228
+ "./snackbar.css": "./dist/components/snackbar/Snackbar.css",
191
229
  "./stepper": {
192
230
  "import": "./dist/components/stepper/index.js",
193
231
  "types": "./dist/types/components/stepper/index.d.ts"
194
232
  },
233
+ "./stepper.css": "./dist/components/stepper/Stepper.css",
195
234
  "./switch": {
196
235
  "import": "./dist/components/switch/index.js",
197
236
  "types": "./dist/types/components/switch/index.d.ts"
198
237
  },
238
+ "./switch.css": "./dist/components/switch/Switch.css",
199
239
  "./table": {
200
240
  "import": "./dist/components/table/index.js",
201
241
  "types": "./dist/types/components/table/index.d.ts"
202
242
  },
243
+ "./table.css": "./dist/components/table/Table.css",
203
244
  "./teaser": {
204
245
  "import": "./dist/components/teaser/index.js",
205
246
  "types": "./dist/types/components/teaser/index.d.ts"
206
- }
247
+ },
248
+ "./teaser.css": "./dist/components/teaser/Teaser.css"
207
249
  },
208
250
  "repository": {
209
251
  "type": "git",
@@ -215,7 +257,7 @@
215
257
  },
216
258
  "scripts": {
217
259
  "dev": "PK_ENABLE_DEBUG_LOGS=true vite",
218
- "build": "vite build && pnpm build:types && node tools/update-exports.mjs",
260
+ "build": "vite build && pnpm build:types && node tools/duplicate-css-modules.mjs && node tools/update-exports.mjs",
219
261
  "build:types": "tsc --project tsconfig.build.json",
220
262
  "typecheck": "tsc --project tsconfig.typecheck.json",
221
263
  "test": "NODE_ENV=test jest --coverage --verbose && pnpm format && pnpm lint && pnpm typecheck",
@@ -298,6 +340,7 @@
298
340
  "eslint-plugin-unused-imports": "^4.1.4",
299
341
  "fs-extra": "^11.3.0",
300
342
  "gh-pages": "^6.3.0",
343
+ "glob": "^13.0.0",
301
344
  "globals": "^15.8.0",
302
345
  "husky": "^9.1.6",
303
346
  "identity-obj-proxy": "^3.0.0",
@@ -1,16 +0,0 @@
1
- "use client";
2
- var __defProp = Object.defineProperty;
3
- var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
4
- import { useEffect } from "react";
5
- function AccordionEffectsLoader({ useBorderShift }) {
6
- useEffect(() => {
7
- if (Boolean(useBorderShift)) {
8
- void import("./Accordion.effects.module.scss.js");
9
- }
10
- }, [useBorderShift]);
11
- return null;
12
- }
13
- __name(AccordionEffectsLoader, "AccordionEffectsLoader");
14
- export {
15
- AccordionEffectsLoader
16
- };
@@ -1,8 +0,0 @@
1
- const accordionBorderShift = "accordionBorderShift";
2
- const Accordion_effects_module = {
3
- accordionBorderShift
4
- };
5
- export {
6
- accordionBorderShift,
7
- Accordion_effects_module as default
8
- };
@@ -1,20 +0,0 @@
1
- "use client";
2
- var __defProp = Object.defineProperty;
3
- var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
4
- import { useEffect } from "react";
5
- function CardEffectsLoader({
6
- useReveal,
7
- useHighlight,
8
- useGradient
9
- }) {
10
- useEffect(() => {
11
- if (Boolean(useReveal) || Boolean(useHighlight) || Boolean(useGradient)) {
12
- void import("./Card.effects.module.scss.js");
13
- }
14
- }, [useReveal, useHighlight, useGradient]);
15
- return null;
16
- }
17
- __name(CardEffectsLoader, "CardEffectsLoader");
18
- export {
19
- CardEffectsLoader
20
- };
@@ -1,14 +0,0 @@
1
- const Card_fadeInAnimation = "Card_fadeInAnimation";
2
- const Card_fadeInMask = "Card_fadeInMask";
3
- const Card_effects_module = {
4
- "prokodo-Card": "prokodo-Card",
5
- "prokodo-Card--has-animation": "prokodo-Card--has-animation",
6
- Card_fadeInAnimation,
7
- "prokodo-Card--has-highlight": "prokodo-Card--has-highlight",
8
- Card_fadeInMask
9
- };
10
- export {
11
- Card_fadeInAnimation,
12
- Card_fadeInMask,
13
- Card_effects_module as default
14
- };
@@ -1,6 +0,0 @@
1
- const styles = {
2
- "prokodo-FormField": "prokodo-FormField"
3
- };
4
- export {
5
- styles as default
6
- };
@@ -1,69 +0,0 @@
1
- const styles = {
2
- "prokodo-GridRow": "prokodo-GridRow",
3
- "prokodo-GridRow--align-left": "prokodo-GridRow--align-left",
4
- "prokodo-GridRow--align-center": "prokodo-GridRow--align-center",
5
- "prokodo-GridRow--align-right": "prokodo-GridRow--align-right",
6
- "prokodo-GridRow--xs-1": "prokodo-GridRow--xs-1",
7
- "prokodo-GridRow--xs-2": "prokodo-GridRow--xs-2",
8
- "prokodo-GridRow--xs-3": "prokodo-GridRow--xs-3",
9
- "prokodo-GridRow--xs-4": "prokodo-GridRow--xs-4",
10
- "prokodo-GridRow--xs-5": "prokodo-GridRow--xs-5",
11
- "prokodo-GridRow--xs-6": "prokodo-GridRow--xs-6",
12
- "prokodo-GridRow--xs-7": "prokodo-GridRow--xs-7",
13
- "prokodo-GridRow--xs-8": "prokodo-GridRow--xs-8",
14
- "prokodo-GridRow--xs-9": "prokodo-GridRow--xs-9",
15
- "prokodo-GridRow--xs-10": "prokodo-GridRow--xs-10",
16
- "prokodo-GridRow--xs-11": "prokodo-GridRow--xs-11",
17
- "prokodo-GridRow--xs-12": "prokodo-GridRow--xs-12",
18
- "prokodo-GridRow--sm-1": "prokodo-GridRow--sm-1",
19
- "prokodo-GridRow--sm-2": "prokodo-GridRow--sm-2",
20
- "prokodo-GridRow--sm-3": "prokodo-GridRow--sm-3",
21
- "prokodo-GridRow--sm-4": "prokodo-GridRow--sm-4",
22
- "prokodo-GridRow--sm-5": "prokodo-GridRow--sm-5",
23
- "prokodo-GridRow--sm-6": "prokodo-GridRow--sm-6",
24
- "prokodo-GridRow--sm-7": "prokodo-GridRow--sm-7",
25
- "prokodo-GridRow--sm-8": "prokodo-GridRow--sm-8",
26
- "prokodo-GridRow--sm-9": "prokodo-GridRow--sm-9",
27
- "prokodo-GridRow--sm-10": "prokodo-GridRow--sm-10",
28
- "prokodo-GridRow--sm-11": "prokodo-GridRow--sm-11",
29
- "prokodo-GridRow--sm-12": "prokodo-GridRow--sm-12",
30
- "prokodo-GridRow--md-1": "prokodo-GridRow--md-1",
31
- "prokodo-GridRow--md-2": "prokodo-GridRow--md-2",
32
- "prokodo-GridRow--md-3": "prokodo-GridRow--md-3",
33
- "prokodo-GridRow--md-4": "prokodo-GridRow--md-4",
34
- "prokodo-GridRow--md-5": "prokodo-GridRow--md-5",
35
- "prokodo-GridRow--md-6": "prokodo-GridRow--md-6",
36
- "prokodo-GridRow--md-7": "prokodo-GridRow--md-7",
37
- "prokodo-GridRow--md-8": "prokodo-GridRow--md-8",
38
- "prokodo-GridRow--md-9": "prokodo-GridRow--md-9",
39
- "prokodo-GridRow--md-10": "prokodo-GridRow--md-10",
40
- "prokodo-GridRow--md-11": "prokodo-GridRow--md-11",
41
- "prokodo-GridRow--md-12": "prokodo-GridRow--md-12",
42
- "prokodo-GridRow--lg-1": "prokodo-GridRow--lg-1",
43
- "prokodo-GridRow--lg-2": "prokodo-GridRow--lg-2",
44
- "prokodo-GridRow--lg-3": "prokodo-GridRow--lg-3",
45
- "prokodo-GridRow--lg-4": "prokodo-GridRow--lg-4",
46
- "prokodo-GridRow--lg-5": "prokodo-GridRow--lg-5",
47
- "prokodo-GridRow--lg-6": "prokodo-GridRow--lg-6",
48
- "prokodo-GridRow--lg-7": "prokodo-GridRow--lg-7",
49
- "prokodo-GridRow--lg-8": "prokodo-GridRow--lg-8",
50
- "prokodo-GridRow--lg-9": "prokodo-GridRow--lg-9",
51
- "prokodo-GridRow--lg-10": "prokodo-GridRow--lg-10",
52
- "prokodo-GridRow--lg-11": "prokodo-GridRow--lg-11",
53
- "prokodo-GridRow--lg-12": "prokodo-GridRow--lg-12",
54
- "prokodo-GridRow--xl-1": "prokodo-GridRow--xl-1",
55
- "prokodo-GridRow--xl-2": "prokodo-GridRow--xl-2",
56
- "prokodo-GridRow--xl-3": "prokodo-GridRow--xl-3",
57
- "prokodo-GridRow--xl-4": "prokodo-GridRow--xl-4",
58
- "prokodo-GridRow--xl-5": "prokodo-GridRow--xl-5",
59
- "prokodo-GridRow--xl-6": "prokodo-GridRow--xl-6",
60
- "prokodo-GridRow--xl-7": "prokodo-GridRow--xl-7",
61
- "prokodo-GridRow--xl-8": "prokodo-GridRow--xl-8",
62
- "prokodo-GridRow--xl-9": "prokodo-GridRow--xl-9",
63
- "prokodo-GridRow--xl-10": "prokodo-GridRow--xl-10",
64
- "prokodo-GridRow--xl-11": "prokodo-GridRow--xl-11",
65
- "prokodo-GridRow--xl-12": "prokodo-GridRow--xl-12"
66
- };
67
- export {
68
- styles as default
69
- };
@@ -1,14 +0,0 @@
1
- "use client";
2
- var __defProp = Object.defineProperty;
3
- var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
4
- import { useEffect } from "react";
5
- function HeadlineEffectsLoader() {
6
- useEffect(() => {
7
- void import("./Headline.effects.module.scss.js");
8
- }, []);
9
- return null;
10
- }
11
- __name(HeadlineEffectsLoader, "HeadlineEffectsLoader");
12
- export {
13
- HeadlineEffectsLoader
14
- };
@@ -1,13 +0,0 @@
1
- const Headline_effects_module = {
2
- "prokodo-Headline": "prokodo-Headline",
3
- "prokodo-Headline--is-highlighted": "prokodo-Headline--is-highlighted",
4
- "prokodo-Headline--inherit--highlighted": "prokodo-Headline--inherit--highlighted",
5
- "prokodo-Headline--primary--highlighted": "prokodo-Headline--primary--highlighted",
6
- "prokodo-Headline--secondary--highlighted": "prokodo-Headline--secondary--highlighted",
7
- "prokodo-Headline--success--highlighted": "prokodo-Headline--success--highlighted",
8
- "prokodo-Headline--warning--highlighted": "prokodo-Headline--warning--highlighted",
9
- "prokodo-Headline--error--highlighted": "prokodo-Headline--error--highlighted"
10
- };
11
- export {
12
- Headline_effects_module as default
13
- };
@@ -1,18 +0,0 @@
1
- "use client";
2
- var __defProp = Object.defineProperty;
3
- var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
4
- import { useEffect } from "react";
5
- function SkeletonEffectsLoader({
6
- animation
7
- }) {
8
- useEffect(() => {
9
- if (animation && animation !== "none") {
10
- void import("./Skeleton.effects.module.scss.js");
11
- }
12
- }, [animation]);
13
- return null;
14
- }
15
- __name(SkeletonEffectsLoader, "SkeletonEffectsLoader");
16
- export {
17
- SkeletonEffectsLoader
18
- };
@@ -1,7 +0,0 @@
1
- const Skeleton_effects_module = {
2
- "skeleton-pulse": "skeleton-pulse",
3
- "skeleton-wave": "skeleton-wave"
4
- };
5
- export {
6
- Skeleton_effects_module as default
7
- };
@@ -1,8 +0,0 @@
1
- const styles = {
2
- "prokodo-TableCell": "prokodo-TableCell",
3
- "prokodo-TableCell__inner": "prokodo-TableCell__inner",
4
- "prokodo-TableCell__icon": "prokodo-TableCell__icon"
5
- };
6
- export {
7
- styles as default
8
- };
@@ -1,5 +0,0 @@
1
- type Flags = {
2
- useBorderShift?: boolean;
3
- };
4
- export declare function AccordionEffectsLoader({ useBorderShift }: Flags): null;
5
- export {};
@@ -1,7 +0,0 @@
1
- type Flags = {
2
- useReveal?: boolean;
3
- useHighlight?: boolean;
4
- useGradient?: boolean;
5
- };
6
- export declare function CardEffectsLoader({ useReveal, useHighlight, useGradient, }: Flags): null;
7
- export {};
@@ -1 +0,0 @@
1
- export declare function HeadlineEffectsLoader(): null;
@@ -1,5 +0,0 @@
1
- type Anim = "wave" | "pulse" | "none" | undefined;
2
- export declare function SkeletonEffectsLoader({ animation, }: {
3
- animation: Anim;
4
- }): null;
5
- export {};