@synerise/ds-button 0.21.10 → 0.21.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.
- package/CHANGELOG.md +16 -0
- package/dist/Button.styles.d.ts +1 -1
- package/dist/Button.styles.js +1 -1
- package/dist/Checkbox/Checkbox.d.ts +1 -1
- package/dist/Checkbox/Checkbox.js +1 -1
- package/dist/Creator/Creator.styles.d.ts +1 -1
- package/dist/Creator/Creator.styles.js +1 -1
- package/dist/Expander/Expander.styles.d.ts +1 -1
- package/dist/Expander/Expander.styles.js +1 -1
- package/dist/Star/Star.d.ts +1 -1
- package/dist/Star/Star.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.21.12](https://github.com/synerise/synerise-design/compare/@synerise/ds-button@0.21.11...@synerise/ds-button@0.21.12) (2024-09-26)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-button
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.21.11](https://github.com/synerise/synerise-design/compare/@synerise/ds-button@0.21.10...@synerise/ds-button@0.21.11) (2024-09-17)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @synerise/ds-button
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## [0.21.10](https://github.com/synerise/synerise-design/compare/@synerise/ds-button@0.21.9...@synerise/ds-button@0.21.10) (2024-09-13)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @synerise/ds-button
|
package/dist/Button.styles.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import React from 'react';
|
|
2
2
|
export declare const RIPPLE_ANIMATION_TIME = 500;
|
|
3
3
|
export declare const Spinner: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
4
4
|
export declare const RippleEffect: import("styled-components").StyledComponent<"span", any, {}, never>;
|
package/dist/Button.styles.js
CHANGED
|
@@ -4,7 +4,7 @@ function _extends() { _extends = Object.assign || function (target) { for (var i
|
|
|
4
4
|
|
|
5
5
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
6
6
|
|
|
7
|
-
import
|
|
7
|
+
import React from 'react';
|
|
8
8
|
import styled, { css, keyframes } from 'styled-components';
|
|
9
9
|
import Button from 'antd/lib/button';
|
|
10
10
|
import { IconContainer } from '@synerise/ds-icon';
|
|
@@ -4,7 +4,7 @@ function _extends() { _extends = Object.assign || function (target) { for (var i
|
|
|
4
4
|
|
|
5
5
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
6
6
|
|
|
7
|
-
import
|
|
7
|
+
import React from 'react';
|
|
8
8
|
import Icon, { CheckboxIndeterminateM, CheckboxSelectedFillM } from '@synerise/ds-icon';
|
|
9
9
|
import Button from '../Button';
|
|
10
10
|
import * as S from './Checkbox.styles';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import React from 'react';
|
|
2
2
|
export declare const CreatorLabel: import("styled-components").StyledComponent<"span", any, {}, never>;
|
|
3
3
|
export declare const Creator: import("styled-components").StyledComponent<({ status, pressed, withLabel, ...rest }: any) => React.JSX.Element, any, {
|
|
4
4
|
withLabel: boolean;
|
|
@@ -2,7 +2,7 @@ var _excluded = ["status", "pressed", "withLabel"];
|
|
|
2
2
|
|
|
3
3
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
4
4
|
|
|
5
|
-
import
|
|
5
|
+
import React from 'react';
|
|
6
6
|
import styled, { css } from 'styled-components';
|
|
7
7
|
import { IconContainer } from '@synerise/ds-icon';
|
|
8
8
|
import { hexToRgba } from '@synerise/ds-utils';
|
|
@@ -5,7 +5,7 @@ function _extends() { _extends = Object.assign || function (target) { for (var i
|
|
|
5
5
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
6
6
|
|
|
7
7
|
import styled, { keyframes, css } from 'styled-components';
|
|
8
|
-
import
|
|
8
|
+
import React from 'react';
|
|
9
9
|
import { IconContainer } from '@synerise/ds-icon';
|
|
10
10
|
import Button from '../Button';
|
|
11
11
|
export var focusAnimation = function focusAnimation(_ref) {
|
package/dist/Star/Star.d.ts
CHANGED
package/dist/Star/Star.js
CHANGED
|
@@ -4,7 +4,7 @@ function _extends() { _extends = Object.assign || function (target) { for (var i
|
|
|
4
4
|
|
|
5
5
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
6
6
|
|
|
7
|
-
import
|
|
7
|
+
import React from 'react';
|
|
8
8
|
import Icon, { StarM, StarFillM } from '@synerise/ds-icon';
|
|
9
9
|
import Button from '../Button';
|
|
10
10
|
import * as S from './Star.styles';
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -2,7 +2,7 @@ function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.crea
|
|
|
2
2
|
|
|
3
3
|
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
4
4
|
|
|
5
|
-
import
|
|
5
|
+
import React from 'react';
|
|
6
6
|
import MainButton from './Button';
|
|
7
7
|
import CheckboxButton from './Checkbox/Checkbox';
|
|
8
8
|
import Creator from './Creator/Creator';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-button",
|
|
3
|
-
"version": "0.21.
|
|
3
|
+
"version": "0.21.12",
|
|
4
4
|
"description": "Button UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "synerise/synerise-design",
|
|
@@ -25,7 +25,8 @@
|
|
|
25
25
|
"prepublish": "npm run build",
|
|
26
26
|
"test": "jest",
|
|
27
27
|
"test:watch": "npm run test -- --watchAll",
|
|
28
|
-
"types": "tsc --noEmit"
|
|
28
|
+
"types": "tsc --noEmit",
|
|
29
|
+
"upgrade:ds": "ncu -f \"@synerise/ds-*\" -u"
|
|
29
30
|
},
|
|
30
31
|
"sideEffects": [
|
|
31
32
|
"dist/style/*",
|
|
@@ -33,8 +34,8 @@
|
|
|
33
34
|
],
|
|
34
35
|
"types": "dist/index.d.ts",
|
|
35
36
|
"dependencies": {
|
|
36
|
-
"@synerise/ds-icon": "^0.65.
|
|
37
|
-
"@synerise/ds-utils": "^0.29.
|
|
37
|
+
"@synerise/ds-icon": "^0.65.7",
|
|
38
|
+
"@synerise/ds-utils": "^0.29.4",
|
|
38
39
|
"classnames": "2.3.2",
|
|
39
40
|
"csstype": "^2.6.9"
|
|
40
41
|
},
|
|
@@ -44,5 +45,5 @@
|
|
|
44
45
|
"react": ">=16.9.0 <= 17.0.2",
|
|
45
46
|
"styled-components": "5.0.1"
|
|
46
47
|
},
|
|
47
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "fc06bd0f13401a57329fb92985b735de33108dbc"
|
|
48
49
|
}
|