@ably/ui 14.0.6 → 14.1.0-dev.30520a8
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/core/styles/forms.css +24 -0
- package/package.json +2 -2
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/core/styles/forms.css
CHANGED
|
@@ -61,4 +61,28 @@
|
|
|
61
61
|
/* color: var(--text-dark-grey); */
|
|
62
62
|
color: #76767c;
|
|
63
63
|
}
|
|
64
|
+
|
|
65
|
+
.ui-dropdown-base {
|
|
66
|
+
@apply rounded-lg border border-neutral-500 pl-16 pr-[56px] appearance-none select-none focus:outline-gui-focus focus:outline-4 text-p2 flex;
|
|
67
|
+
background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBmaWxsPSIjNjY3MDg1IiBkPSJNMTIuOTA0NiAxMkw5LjAwNjcxIDE2LjMzMUwxMC40OTMzIDE3LjY2OUwxNC45OTMzIDEyLjY2OUwxNC45OTMzIDExLjMzMUwxMC40OTMzIDYuMzMxMDVMOS4wMDY3MSA3LjY2ODk4TDEyLjkwNDYgMTJaIiB0cmFuc2Zvcm09InJvdGF0ZSg5MCAxMiAxMikiLz4KPC9zdmc+Cg==");
|
|
68
|
+
background-repeat: no-repeat;
|
|
69
|
+
background-position: center right 16px;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.ui-dropdown-base option:disabled {
|
|
73
|
+
@apply text-neutral-800;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.ui-dropdown {
|
|
77
|
+
@apply ui-dropdown-base py-12;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.ui-dropdown-small {
|
|
81
|
+
@apply ui-dropdown-base py-[9px];
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
/* Special wrapper for overriding default Select2 functionality */
|
|
85
|
+
.ui-dropdown-select2-wrapper .select2-selection__arrow {
|
|
86
|
+
display: none;
|
|
87
|
+
}
|
|
64
88
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ably/ui",
|
|
3
|
-
"version": "14.0.
|
|
3
|
+
"version": "14.1.0-dev.30520a8",
|
|
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",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"@storybook/test": "^8.1.7",
|
|
25
25
|
"@swc/cli": "^0.3.10",
|
|
26
26
|
"@swc/core": "^1.4.11",
|
|
27
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
27
|
+
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
28
28
|
"@typescript-eslint/parser": "^6.21.0",
|
|
29
29
|
"@vitejs/plugin-react": "^4.2.1",
|
|
30
30
|
"autoprefixer": "^10.0.2",
|