@workday/canvas-kit-react 5.3.3 → 5.3.4
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.
|
@@ -32,14 +32,11 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
32
32
|
result["default"] = mod;
|
|
33
33
|
return result;
|
|
34
34
|
};
|
|
35
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
36
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
37
|
-
};
|
|
38
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
36
|
var React = __importStar(require("react"));
|
|
40
37
|
var core_1 = require("@emotion/core");
|
|
41
|
-
var styled_1 = __importDefault(require("@emotion/styled"));
|
|
42
38
|
var tokens_1 = __importStar(require("@workday/canvas-kit-react/tokens"));
|
|
39
|
+
var common_1 = require("@workday/canvas-kit-react/common");
|
|
43
40
|
/**
|
|
44
41
|
* Keyframe for the dots loading animation.
|
|
45
42
|
*/
|
|
@@ -47,7 +44,7 @@ var keyframesLoading = core_1.keyframes(templateObject_1 || (templateObject_1 =
|
|
|
47
44
|
/**
|
|
48
45
|
* The actual loading dot div.
|
|
49
46
|
*/
|
|
50
|
-
var LoadingAnimationDot =
|
|
47
|
+
var LoadingAnimationDot = common_1.styled('div')({
|
|
51
48
|
backgroundColor: tokens_1.default.colors.soap400,
|
|
52
49
|
width: tokens_1.default.space.s,
|
|
53
50
|
height: tokens_1.default.space.s,
|
|
@@ -73,7 +70,7 @@ var LoadingAnimationDot = styled_1.default('div')({
|
|
|
73
70
|
/**
|
|
74
71
|
* A simple container for the loading dots.
|
|
75
72
|
*/
|
|
76
|
-
var Container =
|
|
73
|
+
var Container = common_1.styled('div')({
|
|
77
74
|
display: 'inline-block',
|
|
78
75
|
});
|
|
79
76
|
/**
|
|
@@ -26,8 +26,8 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
|
26
26
|
};
|
|
27
27
|
import * as React from 'react';
|
|
28
28
|
import { keyframes } from '@emotion/core';
|
|
29
|
-
import styled from '@emotion/styled';
|
|
30
29
|
import canvas, { borderRadius } from '@workday/canvas-kit-react/tokens';
|
|
30
|
+
import { styled } from '@workday/canvas-kit-react/common';
|
|
31
31
|
/**
|
|
32
32
|
* Keyframe for the dots loading animation.
|
|
33
33
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import {keyframes} from '@emotion/core';
|
|
3
|
-
import styled from '@emotion/styled';
|
|
4
3
|
import canvas, {borderRadius} from '@workday/canvas-kit-react/tokens';
|
|
4
|
+
import {styled} from '@workday/canvas-kit-react/common';
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
7
|
* Keyframe for the dots loading animation.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@workday/canvas-kit-react",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.4",
|
|
4
4
|
"description": "The parent module that contains all Workday Canvas Kit React components",
|
|
5
5
|
"author": "Workday, Inc. (https://www.workday.com)",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -57,9 +57,9 @@
|
|
|
57
57
|
"@popperjs/core": "^2.5.4",
|
|
58
58
|
"@workday/canvas-colors-web": "^2.0.0",
|
|
59
59
|
"@workday/canvas-depth-web": "^0.16.4",
|
|
60
|
-
"@workday/canvas-kit-labs-react": "^5.3.
|
|
61
|
-
"@workday/canvas-kit-popup-stack": "^5.3.
|
|
62
|
-
"@workday/canvas-kit-preview-react": "^5.3.
|
|
60
|
+
"@workday/canvas-kit-labs-react": "^5.3.4",
|
|
61
|
+
"@workday/canvas-kit-popup-stack": "^5.3.4",
|
|
62
|
+
"@workday/canvas-kit-preview-react": "^5.3.4",
|
|
63
63
|
"@workday/canvas-system-icons-web": "1.0.41",
|
|
64
64
|
"@workday/design-assets-types": "^0.2.4",
|
|
65
65
|
"chroma-js": "^2.1.0",
|
|
@@ -75,5 +75,5 @@
|
|
|
75
75
|
"@workday/canvas-accent-icons-web": "^1.0.0",
|
|
76
76
|
"@workday/canvas-applet-icons-web": "^0.17.50"
|
|
77
77
|
},
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "4816e7af5053c69d3dc6f302d0205b4259ffe943"
|
|
79
79
|
}
|