@steroidsjs/bootstrap 3.0.0-beta.10 → 3.0.0-beta.12

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.
@@ -5,8 +5,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
5
5
  exports.__esModule = true;
6
6
  var react_1 = __importDefault(require("react"));
7
7
  var useBem_1 = __importDefault(require("@steroidsjs/core/hooks/useBem"));
8
- require("./BadgeView.scss");
9
8
  var Icon_1 = __importDefault(require("@steroidsjs/core/ui/content/Icon"));
9
+ require("./BadgeView.scss");
10
10
  function BadgeView(props) {
11
11
  var _a;
12
12
  var bem = (0, useBem_1["default"])('BadgeView');
@@ -0,0 +1,12 @@
1
+ .BadgeView {
2
+
3
+ $root: &;
4
+ display: inline-block;
5
+ position: relative;
6
+
7
+ font-family: $font-family-nunito;
8
+
9
+ &_primary {
10
+ background-color: var(--primary);
11
+ }
12
+ }
package/index.d.ts CHANGED
@@ -23,6 +23,9 @@ declare const _default: {
23
23
  'content.IconView': {
24
24
  lazy: () => any;
25
25
  };
26
+ 'content.BadgeView': {
27
+ lazy: () => any;
28
+ };
26
29
  'form.AutoCompleteFieldView': {
27
30
  lazy: () => any;
28
31
  };
package/index.js CHANGED
@@ -26,6 +26,9 @@ exports["default"] = {
26
26
  'content.IconView': {
27
27
  lazy: function () { return require('./content/Icon/IconView')["default"]; }
28
28
  },
29
+ 'content.BadgeView': {
30
+ lazy: function () { return require('./content/Badge/BadgeView')["default"]; }
31
+ },
29
32
  'form.AutoCompleteFieldView': {
30
33
  lazy: function () { return require('./form/AutoCompleteField/AutoCompleteFieldView')["default"]; }
31
34
  },
package/index.scss CHANGED
@@ -5,6 +5,7 @@
5
5
  @import './content/Alert/AlertView';
6
6
  @import './content/Avatar/AvatarView';
7
7
  @import './content/Avatar/AvatarGroupView';
8
+ @import './content/Badge/BadgeView';
8
9
  @import './content/Calendar/CalendarView';
9
10
  @import './content/Calendar/CaptionElement';
10
11
  @import './content/Card/CardView';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@steroidsjs/bootstrap",
3
- "version": "3.0.0-beta.10",
3
+ "version": "3.0.0-beta.12",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "author": "Vladimir Kozhin <hello@kozhindev.com>",