@ably/ui 14.1.0 → 14.1.1-dev.7e7c662
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/core/.DS_Store +0 -0
- package/core/Accordion/.DS_Store +0 -0
- package/core/Code/.DS_Store +0 -0
- package/core/ContactFooter/.DS_Store +0 -0
- package/core/CookieMessage/.DS_Store +0 -0
- package/core/CustomerLogos/.DS_Store +0 -0
- package/core/DropdownMenu/.DS_Store +0 -0
- package/core/FeaturedLink/.DS_Store +0 -0
- package/core/Flash/.DS_Store +0 -0
- package/core/Footer/.DS_Store +0 -0
- package/core/Icon/.DS_Store +0 -0
- package/core/Loader/.DS_Store +0 -0
- package/core/Logo/.DS_Store +0 -0
- package/core/Meganav/.DS_Store +0 -0
- package/core/MeganavBlogPostsList/.DS_Store +0 -0
- package/core/MeganavControl/.DS_Store +0 -0
- package/core/MeganavControlMobileDropdown/.DS_Store +0 -0
- package/core/MeganavControlMobilePanelClose/.DS_Store +0 -0
- package/core/MeganavControlMobilePanelOpen/.DS_Store +0 -0
- package/core/MeganavSearchAutocomplete/.DS_Store +0 -0
- package/core/MeganavSearchSuggestions/.DS_Store +0 -0
- package/core/Notice/.DS_Store +0 -0
- package/core/Slider/.DS_Store +0 -0
- package/core/Table/.DS_Store +0 -0
- package/core/Tooltip/.DS_Store +0 -0
- package/package.json +1 -1
- package/tailwind.config.js +1 -1
- package/tailwind.extend.js +7 -12
package/core/.DS_Store
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ably/ui",
|
|
3
|
-
"version": "14.1.
|
|
3
|
+
"version": "14.1.1-dev.7e7c662",
|
|
4
4
|
"description": "Home of the Ably design system library ([design.ably.com](https://design.ably.com)). It provides a showcase, development/test environment and a publishing pipeline for different distributables.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
package/tailwind.config.js
CHANGED
package/tailwind.extend.js
CHANGED
|
@@ -3,22 +3,17 @@ const path = require("path");
|
|
|
3
3
|
|
|
4
4
|
const ablyUiConfigPath = path.dirname(require.resolve("./tailwind.config.js"));
|
|
5
5
|
|
|
6
|
-
const
|
|
7
|
-
// Create absolute paths to
|
|
8
|
-
const addPurgeContentPaths = () => {
|
|
9
|
-
const paths = ["*.html.erb", "*", "*.js", "*.json"].map((fileGlob) =>
|
|
10
|
-
path.join(ablyUiConfigPath, "src", "**", fileGlob),
|
|
11
|
-
);
|
|
12
|
-
|
|
13
|
-
return paths;
|
|
14
|
-
};
|
|
15
|
-
|
|
6
|
+
const ablyUITailwindConfig = (extend) => {
|
|
7
|
+
// Create absolute paths to built assets (core, reset) in AblyUI, set as content source
|
|
16
8
|
const configWithPlugin = {
|
|
17
9
|
...ablyUIConfig,
|
|
18
|
-
content:
|
|
10
|
+
content: [
|
|
11
|
+
path.join(ablyUiConfigPath, "core", "**", "*.js"),
|
|
12
|
+
path.join(ablyUiConfigPath, "reset", "**", "*.js"),
|
|
13
|
+
],
|
|
19
14
|
};
|
|
20
15
|
|
|
21
16
|
return extend(configWithPlugin);
|
|
22
17
|
};
|
|
23
18
|
|
|
24
|
-
module.exports =
|
|
19
|
+
module.exports = ablyUITailwindConfig;
|