@assembly-js/design-system 2.4.0 → 2.4.1
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/.github/workflows/npm-publish.yml +5 -3
- package/.yarn/install-state.gz +0 -0
- package/dist/esm/components/Toolbar/Toolbar.js +1 -0
- package/dist/esm/components/Toolbar/ToolbarContext.js +2 -2
- package/dist/esm/index.js +12 -0
- package/dist/esm/types/index.d.ts +11 -0
- package/dist/esm/types/tsconfig.tsbuildinfo +1 -1
- package/dist/styles/main.css +1 -1
- package/dist/types/index.d.ts +11 -0
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/dist/umd/components/Toolbar/Toolbar.js +1 -0
- package/dist/umd/components/Toolbar/ToolbarContext.js +2 -2
- package/dist/umd/types/index.d.ts +11 -0
- package/dist/umd/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -2
|
@@ -34,9 +34,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
34
34
|
var Styles = function Styles(_ref) {
|
|
35
35
|
var children = _ref.children;
|
|
36
36
|
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
37
|
-
className: (0, _clsx["default"])('[&_h1]:!cop-m-0 [&_h1]:cop-text-
|
|
37
|
+
className: (0, _clsx["default"])('[&_h1]:!cop-m-0 [&_h1]:cop-text-xl [&_h1]:cop-font-medium',
|
|
38
38
|
// styles for h1
|
|
39
|
-
'[&_h2]:!cop-m-0 [&_h2]:!cop-text-
|
|
39
|
+
'[&_h2]:!cop-m-0 [&_h2]:!cop-text-lg [&_h2]:!cop-font-medium',
|
|
40
40
|
// styles for h2
|
|
41
41
|
'[&_h3]:!cop-m-0 [&_h3]:!cop-text-base [&_h3]:!cop-font-medium',
|
|
42
42
|
// styles for h3
|
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ─╔═══╗─╔═══╗─╔═══╗─╔═══╗─╔═╗╔═╗─╔══╗──╔╗────╔╗──╔╗
|
|
3
|
+
* ─║╔═╗║─║╔═╗║─║╔═╗║─║╔══╝─║║╚╝║║─║╔╗║──║║────║╚╗╔╝║
|
|
4
|
+
* ─║║─║║─║╚══╗─║╚══╗─║╚══╗─║╔╗╔╗║─║╚╝╚╗─║║────╚╗╚╝╔╝
|
|
5
|
+
* ─║╚═╝║─╚══╗║─╚══╗║─║╔══╝─║║║║║║─║╔═╗║─║║─╔╗──╚╗╔╝─
|
|
6
|
+
* ─║╔═╗║─║╚═╝║─║╚═╝║─║╚══╗─║║║║║║─║╚═╝║─║╚═╝║───║║──
|
|
7
|
+
* ─╚╝─╚╝─╚═══╝─╚═══╝─╚═══╝─╚╝╚╝╚╝─╚═══╝─╚═══╝───╚╝──
|
|
8
|
+
*
|
|
9
|
+
* @assembly-js/design-system
|
|
10
|
+
* https://assembly.com
|
|
11
|
+
*/
|
|
1
12
|
export * from './components/Avatar/Avatar';
|
|
2
13
|
export * from './components/Avatar/UserWithCompanyAvatar';
|
|
3
14
|
export * from './components/Breadcrumb/Breadcrumbs';
|