@workday/canvas-kit-docs 14.2.2 → 14.2.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.
- package/dist/es6/lib/docs.js +1037 -7
- package/dist/es6/lib/stackblitzFiles/packageJSONFile.js +5 -5
- package/dist/es6/lib/stackblitzFiles/packageJSONFile.ts +5 -5
- package/dist/mdx/10.0-UPGRADE-GUIDE.mdx +1 -1
- package/dist/mdx/5.0-UPGRADE-GUIDE.mdx +3 -3
- package/dist/mdx/7.0-UPGRADE-GUIDE.mdx +4 -4
- package/dist/mdx/8.0-UPGRADE-GUIDE.mdx +5 -5
- package/dist/mdx/9.0-UPGRADE-GUIDE.mdx +2 -2
- package/dist/mdx/CONTRIBUTING.mdx +4 -4
- package/dist/mdx/CREATING_COMPOUND_COMPONENTS.mdx +1 -1
- package/dist/mdx/labs-react/side-panel/SidePanel.mdx +85 -54
- package/dist/mdx/labs-react/side-panel/examples/AlwaysOpen.tsx +3 -3
- package/dist/mdx/labs-react/side-panel/examples/Basic.tsx +17 -37
- package/dist/mdx/labs-react/side-panel/examples/ExternalControl.tsx +6 -20
- package/dist/mdx/labs-react/side-panel/examples/{HiddenName.tsx → Heading.tsx} +4 -3
- package/dist/mdx/labs-react/side-panel/examples/OnStateTransition.tsx +3 -1
- package/dist/mdx/labs-react/side-panel/examples/RightOrigin.tsx +3 -9
- package/dist/mdx/labs-react/side-panel/examples/Variant.tsx +2 -8
- package/dist/mdx/preview-react/multi-select/MultiSelect.mdx +3 -3
- package/dist/mdx/preview-react/segmented-control/SegmentedControl.mdx +2 -2
- package/dist/mdx/preview-react/status-indicator/StatusIndicator.mdx +1 -1
- package/dist/mdx/react/action-bar/ActionBar.mdx +1 -1
- package/dist/mdx/react/banner/Banner.mdx +1 -1
- package/dist/mdx/react/breadcrumbs/Breadcrumbs.mdx +1 -1
- package/dist/mdx/react/card/card.mdx +1 -1
- package/dist/mdx/react/common/mdx/CompoundComponentUtilities.mdx +1 -1
- package/dist/mdx/react/layout/Box.mdx +13 -13
- package/dist/mdx/react/layout/Flex.mdx +3 -3
- package/dist/mdx/react/layout/Grid.mdx +3 -3
- package/dist/mdx/react/pagination/pagination.mdx +4 -4
- package/dist/mdx/react/popup/Popup.mdx +1 -1
- package/dist/mdx/react/select/Select.mdx +4 -4
- package/dist/mdx/react/tabs/Tabs.mdx +2 -2
- package/dist/mdx/react/text/Text.mdx +1 -1
- package/dist/mdx/react/toast/toast.mdx +1 -1
- package/package.json +6 -6
|
@@ -37,7 +37,9 @@ export default () => {
|
|
|
37
37
|
<Flex cs={stylesOverride.viewport}>
|
|
38
38
|
<SidePanel model={model}>
|
|
39
39
|
<SidePanel.ToggleButton />
|
|
40
|
-
<
|
|
40
|
+
<SidePanel.Heading hidden size="small">
|
|
41
|
+
Hidden Title
|
|
42
|
+
</SidePanel.Heading>
|
|
41
43
|
</SidePanel>
|
|
42
44
|
<Flex as="main" cs={stylesOverride.main}>
|
|
43
45
|
<Text as="p" typeLevel="body.large">
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {SecondaryButton} from '@workday/canvas-kit-react/button';
|
|
2
2
|
import {SidePanel, useSidePanelModel} from '@workday/canvas-kit-labs-react/side-panel';
|
|
3
3
|
import {Flex} from '@workday/canvas-kit-react/layout';
|
|
4
|
-
import {
|
|
4
|
+
import {Text} from '@workday/canvas-kit-react/text';
|
|
5
5
|
import {CanvasProvider} from '@workday/canvas-kit-react/common';
|
|
6
6
|
import {createStyles, px2rem} from '@workday/canvas-kit-styling';
|
|
7
7
|
import {system} from '@workday/canvas-tokens-web';
|
|
@@ -37,15 +37,9 @@ const RightPanel = () => {
|
|
|
37
37
|
|
|
38
38
|
return (
|
|
39
39
|
<SidePanel model={model} className={stylesOverride.panelContainer}>
|
|
40
|
-
<SidePanel.ToggleButton />
|
|
40
|
+
<SidePanel.ToggleButton aria-label="Collapse View" />
|
|
41
41
|
<Flex cs={stylesOverride.panel}>
|
|
42
|
-
<Heading
|
|
43
|
-
size="small"
|
|
44
|
-
hidden={model.state.transitionState === 'collapsed' ? true : undefined}
|
|
45
|
-
id={model.state.labelId}
|
|
46
|
-
>
|
|
47
|
-
Tasks Panel
|
|
48
|
-
</Heading>
|
|
42
|
+
<SidePanel.Heading size="small">Tasks Panel</SidePanel.Heading>
|
|
49
43
|
</Flex>
|
|
50
44
|
</SidePanel>
|
|
51
45
|
);
|
|
@@ -35,15 +35,9 @@ export default () => {
|
|
|
35
35
|
<CanvasProvider dir={direction}>
|
|
36
36
|
<Flex cs={stylesOverride.viewport}>
|
|
37
37
|
<SidePanel model={model} variant="alternate">
|
|
38
|
-
<SidePanel.ToggleButton />
|
|
38
|
+
<SidePanel.ToggleButton aria-label="Collapse View" />
|
|
39
39
|
<Flex cs={stylesOverride.panel}>
|
|
40
|
-
<Heading
|
|
41
|
-
size="small"
|
|
42
|
-
hidden={model.state.transitionState === 'collapsed' ? true : undefined}
|
|
43
|
-
id={model.state.labelId}
|
|
44
|
-
>
|
|
45
|
-
Alternate Panel
|
|
46
|
-
</Heading>
|
|
40
|
+
<SidePanel.Heading size="small">Alternate Panel</SidePanel.Heading>
|
|
47
41
|
</Flex>
|
|
48
42
|
</SidePanel>
|
|
49
43
|
<Flex as="main" cs={stylesOverride.main}>
|
|
@@ -30,11 +30,11 @@ yarn add @workday/canvas-kit-preview-react
|
|
|
30
30
|
### Basic Example
|
|
31
31
|
|
|
32
32
|
`MultiSelect` supports a
|
|
33
|
-
[dynamic API](/
|
|
33
|
+
[dynamic API](/get-started/for-developers/guides/collection-api/#dynamic-items) where you
|
|
34
34
|
pass an array of items via the `items` prop and provide a render function to display the items. The
|
|
35
35
|
items may be provided as an
|
|
36
|
-
[array of strings](/
|
|
37
|
-
[array of objects](/
|
|
36
|
+
[array of strings](/get-started/for-developers/guides/collection-api/#array-of-strings) or an
|
|
37
|
+
[array of objects](/get-started/for-developers/guides/collection-api/#array-of-objects).
|
|
38
38
|
|
|
39
39
|
`MultiSelect` should be used in tandem with [Form Field](/components/inputs/form-field/) where the
|
|
40
40
|
`MultiSelect` wraps the `FormField` element and the `FormField` element wraps the children of
|
|
@@ -12,7 +12,7 @@ import Dynamic from './examples/Dynamic';
|
|
|
12
12
|
# Canvas Kit Segmented Control
|
|
13
13
|
|
|
14
14
|
Segmented Control is a
|
|
15
|
-
[compound component](/
|
|
15
|
+
[compound component](/get-started/for-developers/documentation/compound-components/) that represents
|
|
16
16
|
a linear group of multiple buttons allowing the selection of a specific value.
|
|
17
17
|
|
|
18
18
|
[> Workday Design Reference](https://design.workday.com/components/buttons/segmented-control)
|
|
@@ -124,7 +124,7 @@ Set the `disabled` prop of `SegmentedControl` to disable the entire component in
|
|
|
124
124
|
### Dynamic Items
|
|
125
125
|
|
|
126
126
|
`SegmentedControl` supports a
|
|
127
|
-
[dynamic API](/
|
|
127
|
+
[dynamic API](/get-started/for-developers/guides/collection-api/#dynamic-items) where instead
|
|
128
128
|
of statically providing the JSX for each `SegmentedControl.Item`, you pass an array of `items` in
|
|
129
129
|
the `model` state and provide a render function to display the items.
|
|
130
130
|
|
|
@@ -51,7 +51,7 @@ We **strongly** discourage using text in a `StatusIndicator` which will cause it
|
|
|
51
51
|
maximum width of `200px`. In situations where this cannot be avoided and text must be overflowed, we
|
|
52
52
|
suggest wrapping `StatusIndicator` in an `OverflowTooltip` and applying `tabIndex={0}` to it so the
|
|
53
53
|
overflowed text is accessible via keyboard and mouse. You may also override the default `maxWidth`
|
|
54
|
-
of `StatusIndicator` via [style props](/
|
|
54
|
+
of `StatusIndicator` via [style props](/get-started/for-developers/documentation/style-props/).
|
|
55
55
|
|
|
56
56
|
<ExampleCodeBlock code={Overflow} />
|
|
57
57
|
|
|
@@ -7,7 +7,7 @@ import OverflowActionBarCustomButtonCount from './examples/OverflowActionBarCust
|
|
|
7
7
|
|
|
8
8
|
# Canvas Kit Action Bar
|
|
9
9
|
|
|
10
|
-
Action Bar is a [compound component](/
|
|
10
|
+
Action Bar is a [compound component](/get-started/for-developers/documentation/compound-components/)
|
|
11
11
|
that contains primary and secondary actions related to a page or task.
|
|
12
12
|
|
|
13
13
|
[> Workday Design Reference](https://design.workday.com/components/buttons/action-bar)
|
|
@@ -13,7 +13,7 @@ import StickyRTL from './examples/StickyRTL';
|
|
|
13
13
|
|
|
14
14
|
# Canvas Kit Banner
|
|
15
15
|
|
|
16
|
-
`Banner` is a [compound component](/
|
|
16
|
+
`Banner` is a [compound component](/get-started/for-developers/documentation/compound-components/)
|
|
17
17
|
used surface important information and feedback to the user about a task, action, or state.
|
|
18
18
|
|
|
19
19
|
[> Workday Design Reference](https://design.workday.com/components/indicators/banners)
|
|
@@ -8,7 +8,7 @@ import LinkTruncation from './examples/LinkTruncation';
|
|
|
8
8
|
# Canvas Kit Breadcrumbs
|
|
9
9
|
|
|
10
10
|
Breadcrumbs is a
|
|
11
|
-
[compound component](/
|
|
11
|
+
[compound component](/get-started/for-developers/documentation/compound-components/) that allows
|
|
12
12
|
users to keep track and maintain awareness of their location as they navigate through pages,
|
|
13
13
|
folders, files, etc.
|
|
14
14
|
|
|
@@ -9,7 +9,7 @@ import WithStencils from './examples/Stencils';
|
|
|
9
9
|
# Canvas Kit Card
|
|
10
10
|
|
|
11
11
|
A Card is a preview that serves as an entry point to more detailed information. Card is a
|
|
12
|
-
presentational [compound component](/
|
|
12
|
+
presentational [compound component](/get-started/for-developers/documentation/compound-components/)
|
|
13
13
|
used as a building block for other components such as [Popup](/components/popups/popup/) and
|
|
14
14
|
[Modal](/components/popups/modal/).
|
|
15
15
|
|
|
@@ -10,7 +10,7 @@ import CreateComponent from './examples/CreateComponent';
|
|
|
10
10
|
# Compound Component Utilities
|
|
11
11
|
|
|
12
12
|
The following utilities are used to create and compose
|
|
13
|
-
[compound components](/
|
|
13
|
+
[compound components](/get-started/for-developers/documentation/compound-components/).
|
|
14
14
|
|
|
15
15
|
## Installation
|
|
16
16
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {ExampleCodeBlock} from '@workday/canvas-kit-docs';
|
|
1
|
+
import { ExampleCodeBlock } from '@workday/canvas-kit-docs';
|
|
2
2
|
import Basic from './examples/Box/Basic';
|
|
3
3
|
|
|
4
4
|
# Box
|
|
@@ -31,18 +31,18 @@ supports all `BoxProps` such as `padding`, it also supports semantic anchor elem
|
|
|
31
31
|
|
|
32
32
|
### Style Props
|
|
33
33
|
|
|
34
|
-
`Box` exposes [style props](/
|
|
34
|
+
`Box` exposes [style props](/get-started/for-developers/documentation/style-props/) that allow you
|
|
35
35
|
to modify styles in an ergonomic way across components. To learn more about individual sets of `Box`
|
|
36
36
|
style props, consult the lists below.
|
|
37
37
|
|
|
38
|
-
- [Background Style Props](/
|
|
39
|
-
- [Border Style Props](/
|
|
40
|
-
- [Color Style Props](/
|
|
41
|
-
- [Depth Style Props](/
|
|
42
|
-
- [Flex Item Style Props](/
|
|
43
|
-
- [Grid Item Style Props](/
|
|
44
|
-
- [Layout Style Props](/
|
|
45
|
-
- [Other Style Props](/
|
|
46
|
-
- [Position Style Props](/
|
|
47
|
-
- [Space Style Props](/
|
|
48
|
-
- [Text Style Props](/
|
|
38
|
+
- [Background Style Props](/get-started/for-developers/documentation/style-props/#background)
|
|
39
|
+
- [Border Style Props](/get-started/for-developers/documentation/style-props/#border)
|
|
40
|
+
- [Color Style Props](/get-started/for-developers/documentation/style-props/#color)
|
|
41
|
+
- [Depth Style Props](/get-started/for-developers/documentation/style-props/#depth)
|
|
42
|
+
- [Flex Item Style Props](/get-started/for-developers/documentation/style-props/#flex-item)
|
|
43
|
+
- [Grid Item Style Props](/get-started/for-developers/documentation/style-props/#grid-item)
|
|
44
|
+
- [Layout Style Props](/get-started/for-developers/documentation/style-props/#layout)
|
|
45
|
+
- [Other Style Props](/get-started/for-developers/documentation/style-props/#other)
|
|
46
|
+
- [Position Style Props](/get-started/for-developers/documentation/style-props/#position)
|
|
47
|
+
- [Space Style Props](/get-started/for-developers/documentation/style-props/#space)
|
|
48
|
+
- [Text Style Props](/get-started/for-developers/documentation/style-props/#text)
|
|
@@ -52,13 +52,13 @@ building layouts.
|
|
|
52
52
|
#### Props
|
|
53
53
|
|
|
54
54
|
`Flex` exposes
|
|
55
|
-
[flex container style props](/
|
|
55
|
+
[flex container style props](/get-started/for-developers/documentation/style-props/#flex) and `Box`
|
|
56
56
|
style props.
|
|
57
57
|
|
|
58
58
|
### Flex.Item
|
|
59
59
|
|
|
60
60
|
`Flex.Item` is a subcomponent of `Flex`. It is a `Box` component under the hood and exposes
|
|
61
|
-
[flex item style props](/
|
|
61
|
+
[flex item style props](/get-started/for-developers/documentation/style-props/#flex-item) that map
|
|
62
62
|
to CSS Flexbox Item properties. This provides greater control over how child components render in
|
|
63
63
|
your layout.
|
|
64
64
|
|
|
@@ -73,5 +73,5 @@ your layout.
|
|
|
73
73
|
#### Props
|
|
74
74
|
|
|
75
75
|
`Flex.Item` exposes
|
|
76
|
-
[flex item style props](/
|
|
76
|
+
[flex item style props](/get-started/for-developers/documentation/style-props/#flex-item) and `Box`
|
|
77
77
|
style props.
|
|
@@ -9,7 +9,7 @@ import GridLayoutInteractive from './examples/Grid/GridLayoutInteractive';
|
|
|
9
9
|
two-dimensional layouts (rows and columns) with
|
|
10
10
|
[CSS Grid](https://developer.mozilla.org/en-US/docs/Learn/CSS/CSS_layout/Grids).
|
|
11
11
|
|
|
12
|
-
Please refer to our [layout examples](/examples
|
|
12
|
+
Please refer to our [layout examples](/examples-layouts--docs) for more examples of how to implement
|
|
13
13
|
different layouts using `Grid`.
|
|
14
14
|
|
|
15
15
|
## Installation
|
|
@@ -96,13 +96,13 @@ layouts.
|
|
|
96
96
|
#### Props
|
|
97
97
|
|
|
98
98
|
`Grid` exposes
|
|
99
|
-
[grid container style props](/
|
|
99
|
+
[grid container style props](/get-started/for-developers/documentation/style-props/#grid) and `Box`
|
|
100
100
|
style props.
|
|
101
101
|
|
|
102
102
|
### Grid.Item
|
|
103
103
|
|
|
104
104
|
`Grid.Item` is a subcomponent of `Grid`. It is a `Box` component under the hood and exposes
|
|
105
|
-
[grid item style props](/
|
|
105
|
+
[grid item style props](/get-started/for-developers/documentation/style-props/#grid) that map to CSS
|
|
106
106
|
Grid Item properties. This provides greater control over how child components render in your layout.
|
|
107
107
|
|
|
108
108
|
```tsx
|
|
@@ -10,7 +10,7 @@ import RTL from './examples/RTL';
|
|
|
10
10
|
# Canvas Kit Pagination
|
|
11
11
|
|
|
12
12
|
`Pagination` is a
|
|
13
|
-
[compound component](/
|
|
13
|
+
[compound component](/get-started/for-developers/documentation/compound-components/) that allows
|
|
14
14
|
users to navigate between pages in a range.
|
|
15
15
|
|
|
16
16
|
[> Workday Design Reference](https://design.workday.com/components/navigation/pagination)
|
|
@@ -46,7 +46,7 @@ readers.
|
|
|
46
46
|
By default, `Pagination` will create and use its own [model](#model) internally. Alternatively, you
|
|
47
47
|
may configure your own model with `usePaginationModel` and pass it to `Pagination` via the `model`
|
|
48
48
|
prop. This pattern is referred to as
|
|
49
|
-
[hoisting the model](/
|
|
49
|
+
[hoisting the model](/get-started/for-developers/documentation/compound-components/#configuring-a-model)
|
|
50
50
|
and provides direct access to its `state` and `events` outside of the `Pagination` component.
|
|
51
51
|
|
|
52
52
|
In this example, we set up external observation of the model state and create an external button to
|
|
@@ -94,7 +94,7 @@ You can use `useResizeObserver` to accomplish this as in the example below.
|
|
|
94
94
|
## Model
|
|
95
95
|
|
|
96
96
|
If `Pagination` was stripped of all its markup, attributes, and styling, what would remain is the
|
|
97
|
-
[model](/
|
|
97
|
+
[model](/get-started/for-developers/documentation/compound-components/#models). The model is an
|
|
98
98
|
object composed of two parts: `state` which describes the current snapshot in time of the component
|
|
99
99
|
and `events` which describes events that can be sent to the model.
|
|
100
100
|
|
|
@@ -135,7 +135,7 @@ export const CustomPagination = () => {
|
|
|
135
135
|
Alternatively, if you need direct access to the model's `state` and `events` outside of the
|
|
136
136
|
`Pagination` component, you may configure your own model with `usePaginationModel` and pass it to
|
|
137
137
|
`Pagination` via a pattern called
|
|
138
|
-
[hoisting the model](/
|
|
138
|
+
[hoisting the model](/get-started/for-developers/documentation/compound-components/#configuring-a-model).
|
|
139
139
|
|
|
140
140
|
```tsx
|
|
141
141
|
const model = usePaginationModel({
|
|
@@ -44,7 +44,7 @@ yarn add @workday/canvas-kit-react
|
|
|
44
44
|
## Usage
|
|
45
45
|
|
|
46
46
|
The `Popup` component is a generic
|
|
47
|
-
[Compound Component](/
|
|
47
|
+
[Compound Component](/get-started/for-developers/documentation/compound-components/) that is used to
|
|
48
48
|
build popup UIs that are not already covered by Canvas Kit.
|
|
49
49
|
|
|
50
50
|
### Basic Example
|
|
@@ -40,11 +40,11 @@ yarn add @workday/canvas-kit-react
|
|
|
40
40
|
### Basic Example
|
|
41
41
|
|
|
42
42
|
`Select` supports a
|
|
43
|
-
[dynamic API](/
|
|
43
|
+
[dynamic API](/get-started/for-developers/guides/collection-api/#dynamic-items) where you
|
|
44
44
|
pass an array of items via the `items` prop and provide a render function to display the items. The
|
|
45
45
|
items may be provided as an
|
|
46
|
-
[array of strings](/
|
|
47
|
-
[array of objects](/
|
|
46
|
+
[array of strings](/get-started/for-developers/guides/collection-api/#array-of-strings) or an
|
|
47
|
+
[array of objects](/get-started/for-developers/guides/collection-api/#array-of-objects).
|
|
48
48
|
|
|
49
49
|
`Select` should be used in tandem with [Form Field](/components/inputs/form-field/) where the
|
|
50
50
|
`Select` wraps the `FormField` element and the `FormField` element wraps the children of `Select` to
|
|
@@ -74,7 +74,7 @@ value of the `Select`.
|
|
|
74
74
|
By default, `Select` will create and use its own model internally. Alternatively, you may configure
|
|
75
75
|
your own model with `useSelectModel` and pass it to `Select` via the `model` prop. This pattern is
|
|
76
76
|
referred to as
|
|
77
|
-
[hoisting the model](/
|
|
77
|
+
[hoisting the model](/get-started/for-developers/documentation/compound-components/#configuring-a-model)
|
|
78
78
|
and provides direct access to its `state` and `events` outside of the `Select` component.
|
|
79
79
|
|
|
80
80
|
In this example, we set up external observation of the model state and create an external button to
|
|
@@ -12,7 +12,7 @@ import DynamicTabs from './examples/DynamicTabs';
|
|
|
12
12
|
|
|
13
13
|
# Canvas Kit Tabs
|
|
14
14
|
|
|
15
|
-
`Tabs` is a [compound component](/
|
|
15
|
+
`Tabs` is a [compound component](/get-started/for-developers/documentation/compound-components/)
|
|
16
16
|
that allows users to navigate between related views of content while remaining in context of the
|
|
17
17
|
page.
|
|
18
18
|
|
|
@@ -57,7 +57,7 @@ should render.
|
|
|
57
57
|
By default, `Tabs` will create and use its own [model](#model) internally. Alternatively, you may
|
|
58
58
|
configure your own model with `useTabsModel` and pass it to `Tabs` via the `model` prop. This
|
|
59
59
|
pattern is referred to as
|
|
60
|
-
[hoisting the model](/
|
|
60
|
+
[hoisting the model](/get-started/for-developers/documentation/compound-components/#configuring-a-model)
|
|
61
61
|
and provides direct access to its `state` and `events` outside of the `Tabs` component.
|
|
62
62
|
|
|
63
63
|
In this example, we set up external observation of the model state and create an external button to
|
|
@@ -19,7 +19,7 @@ yarn add @workday/canvas-kit-react
|
|
|
19
19
|
### Basic Example
|
|
20
20
|
|
|
21
21
|
`Text` is built on top of [`Box`](/components/layout/box/) and supports a multitude of
|
|
22
|
-
[style props](/
|
|
22
|
+
[style props](/get-started/for-developers/documentation/style-props/) including spacing props such
|
|
23
23
|
as `margin` and `padding`, as well as text styling props such as `fontSize` and `fontWeight`.
|
|
24
24
|
|
|
25
25
|
`Text` renders a `<span>` element by default. You may override the rendered element using the `as`
|
|
@@ -9,7 +9,7 @@ import RTL from './examples/RTL';
|
|
|
9
9
|
|
|
10
10
|
# Canvas Kit Toast
|
|
11
11
|
|
|
12
|
-
`Toast` is a [compound component](/
|
|
12
|
+
`Toast` is a [compound component](/get-started/for-developers/documentation/compound-components/)
|
|
13
13
|
that contains updates or messages about the status of an application's process.
|
|
14
14
|
|
|
15
15
|
## Installation
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@workday/canvas-kit-docs",
|
|
3
|
-
"version": "14.2.
|
|
3
|
+
"version": "14.2.4",
|
|
4
4
|
"description": "Documentation components of Canvas Kit components",
|
|
5
5
|
"author": "Workday, Inc. (https://www.workday.com)",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -45,10 +45,10 @@
|
|
|
45
45
|
"@emotion/styled": "^11.6.0",
|
|
46
46
|
"@stackblitz/sdk": "^1.11.0",
|
|
47
47
|
"@storybook/csf": "0.0.1",
|
|
48
|
-
"@workday/canvas-kit-labs-react": "^14.2.
|
|
49
|
-
"@workday/canvas-kit-preview-react": "^14.2.
|
|
50
|
-
"@workday/canvas-kit-react": "^14.2.
|
|
51
|
-
"@workday/canvas-kit-styling": "^14.2.
|
|
48
|
+
"@workday/canvas-kit-labs-react": "^14.2.4",
|
|
49
|
+
"@workday/canvas-kit-preview-react": "^14.2.4",
|
|
50
|
+
"@workday/canvas-kit-react": "^14.2.4",
|
|
51
|
+
"@workday/canvas-kit-styling": "^14.2.4",
|
|
52
52
|
"@workday/canvas-system-icons-web": "^3.0.36",
|
|
53
53
|
"@workday/canvas-tokens-web": "^3.1.1",
|
|
54
54
|
"markdown-to-jsx": "^7.2.0",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"mkdirp": "^1.0.3",
|
|
62
62
|
"typescript": "5.0"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "039da83fef34eac26de361fc512d548760ec1ee8"
|
|
65
65
|
}
|