@carbon/vue 1.0.0 → 1.1.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/CHANGELOG.md +192 -0
- package/README.md +9 -156
- package/dist/carbon-data-viz-vue.common.js +6 -6
- package/dist/carbon-data-viz-vue.common.js.map +1 -1
- package/dist/carbon-data-viz-vue.css +1 -1
- package/dist/carbon-data-viz-vue.umd.js +6 -6
- package/dist/carbon-data-viz-vue.umd.js.map +1 -1
- package/dist/carbon-data-viz-vue.umd.min.js.map +1 -1
- package/dist/carbon-vue.common.js +8807 -4866
- package/dist/carbon-vue.common.js.map +1 -1
- package/dist/carbon-vue.umd.js +8807 -4866
- package/dist/carbon-vue.umd.js.map +1 -1
- package/dist/carbon-vue.umd.min.js +4 -4
- package/dist/carbon-vue.umd.min.js.map +1 -1
- package/dist/demo.html +2 -2
- package/package.json +21 -8
- package/src/_internal/_feature-flags.js +42 -0
- package/src/components/cv-accordion/_cv-accordion-item-skeleton.vue +10 -0
- package/src/components/cv-accordion/cv-accordion-item.vue +6 -0
- package/src/components/cv-button/cv-button.vue +32 -3
- package/src/components/cv-checkbox/_cv-checkbox-inner-form-item.vue +1 -1
- package/src/components/cv-checkbox/_cv-checkbox-inner.vue +1 -0
- package/src/components/cv-checkbox/cv-checkbox-skeleton.vue +13 -0
- package/src/components/cv-code-snippet/_cv-code-snippet-multiline.vue +10 -0
- package/src/components/cv-code-snippet/_cv-code-snippet-oneline.vue +10 -0
- package/src/components/cv-code-snippet/cv-code-snippet-skeleton.vue +29 -0
- package/src/components/cv-code-snippet/cv-code-snippet.vue +1 -1
- package/src/components/cv-content-switcher/cv-content-switcher-button.vue +28 -1
- package/src/components/cv-content-switcher/cv-content-switcher.vue +1 -1
- package/src/components/cv-data-table/cv-data-table.vue +54 -18
- package/src/components/cv-date-picker/_cv-date-picker-inner-c10.vue +220 -0
- package/src/components/cv-date-picker/_cv-date-picker-inner.vue +231 -0
- package/src/components/cv-date-picker/cv-date-picker.vue +17 -216
- package/src/components/cv-dropdown/_cv-dropdown-inner-c10.vue +201 -0
- package/src/components/cv-dropdown/_cv-dropdown-inner-form-item.vue +22 -0
- package/src/components/cv-dropdown/_cv-dropdown-inner.vue +213 -0
- package/src/components/cv-dropdown/cv-dropdown-item.vue +4 -0
- package/src/components/cv-dropdown/cv-dropdown-skeleton.vue +18 -0
- package/src/components/cv-dropdown/cv-dropdown.vue +20 -167
- package/src/components/cv-file-uploader/cv-file-uploader-skeleton.vue +22 -0
- package/src/components/cv-file-uploader/cv-file-uploader.vue +48 -8
- package/src/components/cv-inline-loader/cv-inline-loader.vue +42 -0
- package/src/components/cv-inline-notification/cv-inline-notification.vue +25 -7
- package/src/components/cv-loading/cv-loading.vue +18 -1
- package/src/components/cv-modal/cv-modal.vue +17 -6
- package/src/components/cv-number-input/cv-number-input.vue +9 -2
- package/src/components/cv-overflow-menu/cv-overflow-menu.vue +17 -15
- package/src/components/cv-pagination/cv-pagination.vue +2 -2
- package/src/components/cv-radio-button/cv-radio-button.vue +1 -0
- package/src/components/cv-slider/cv-slider.vue +6 -6
- package/src/components/cv-structured-list/_cv-structured-list-item-selectable.vue +1 -0
- package/src/components/cv-tabs/cv-tabs.vue +22 -11
- package/src/components/cv-text-input/cv-text-input.vue +70 -0
- package/src/components/cv-toast-notification/cv-toast-notification.vue +35 -0
- package/src/components/cv-tooltip/cv-interactive-tooltip.vue +4 -4
- package/src/data-viz/cv-bar-graph/cv-bar-graph.vue +7 -4
- package/src/data-viz/cv-gauge/cv-gauge.vue +1 -1
- package/src/data-viz/cv-pie-chart/cv-pie-chart.vue +8 -7
- package/src/components/cv-data-table/_cv-data-table-temp.vue +0 -669
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
## 1.1.1 (March 19, 2019)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- A number of experimental additions for carbon x
|
|
6
|
+
- Change node requirements to > 10 in package.json
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- Fix tabs on narrow screens (#273)
|
|
11
|
+
- Fix dorpdown-items v-for (#273)
|
|
12
|
+
|
|
13
|
+
### Dependency versions
|
|
14
|
+
|
|
15
|
+
Versions reflect those version was built using.
|
|
16
|
+
|
|
17
|
+
| Dependency | Version | Notes |
|
|
18
|
+
| -------------------- | ------------ | ------------------------ |
|
|
19
|
+
| @carbon/icon-helpers | 0.0.1-beta.0 | experimental only |
|
|
20
|
+
| @carbon/icons-vue | 0.0.1-beta.0 | experimental only |
|
|
21
|
+
| carbon-components | 9.70.1 | |
|
|
22
|
+
| d3 | 5.8.2 | Only needed for data-viz |
|
|
23
|
+
| flatpickr | 4.5.2 | |
|
|
24
|
+
| vue | 2.6.3 | |
|
|
25
|
+
|
|
26
|
+
## 1.1.0 (March 14, 2019)
|
|
27
|
+
|
|
28
|
+
### Features
|
|
29
|
+
|
|
30
|
+
- Experimental CvCodeSnippet behind feature flag (#244).
|
|
31
|
+
- Experimental CvContentSwitcher behind feature flag (#246)
|
|
32
|
+
- Experimental CvDatePicker behind feature flag (#251)
|
|
33
|
+
- Added CvInlineLoader (#253)
|
|
34
|
+
- Added password behviour for CvTextInput (#254)
|
|
35
|
+
- Experimental toggle added for supporting components (#257)
|
|
36
|
+
|
|
37
|
+
### Bug Fixes
|
|
38
|
+
|
|
39
|
+
- chore: Reduced storybook CSS payload
|
|
40
|
+
- fix: Checkbox hover when disabled (#241)
|
|
41
|
+
- fix: add missing inherit attrs false (#249)
|
|
42
|
+
- fix: show tip and hide tip buttons for interactive tooltip storybook (#248)
|
|
43
|
+
- fix: content switcher icon spacing (#258)
|
|
44
|
+
|
|
45
|
+
### Dependency versions
|
|
46
|
+
|
|
47
|
+
Versions reflect those version was built using.
|
|
48
|
+
|
|
49
|
+
| Dependency | Version | Notes |
|
|
50
|
+
| -------------------- | ------------ | ------------------------ |
|
|
51
|
+
| @carbon/icon-helpers | 0.0.1-beta.0 | experimental only |
|
|
52
|
+
| @carbon/icons-vue | 0.0.1-beta.0 | experimental only |
|
|
53
|
+
| carbon-components | 9.70.1 | |
|
|
54
|
+
| d3 | 5.8.2 | Only needed for data-viz |
|
|
55
|
+
| flatpickr | 4.5.2 | |
|
|
56
|
+
| vue | 2.6.3 | |
|
|
57
|
+
|
|
58
|
+
## 1.0.2 (Mar 8, 2019)
|
|
59
|
+
|
|
60
|
+
### Features
|
|
61
|
+
|
|
62
|
+
- Add row-select-change and row-select-changes events to table.
|
|
63
|
+
- Add rows-selected property to table
|
|
64
|
+
- Add use rows-selected with v-model for table
|
|
65
|
+
|
|
66
|
+
### Bug fixes
|
|
67
|
+
|
|
68
|
+
- Fix overflow menu issue #234
|
|
69
|
+
|
|
70
|
+
### Dependency versions
|
|
71
|
+
|
|
72
|
+
| Dependency | Version | Notes |
|
|
73
|
+
| -------------------- | ------------ | ----------------------------------------------- |
|
|
74
|
+
| @carbon/icon-helpers | 0.0.1-beta.0 | experimental only |
|
|
75
|
+
| @carbon/icons-vue | 0.0.1-beta.0 | experimental only |
|
|
76
|
+
| carbon-components | 9.70.1 | |
|
|
77
|
+
| d3 | 5.7.0 | Only needed for data-viz |
|
|
78
|
+
| flatpickr | 4.5.1 | |
|
|
79
|
+
| vue | 2.6.1 | some reactivity (e.g. data table) requires this |
|
|
80
|
+
|
|
81
|
+
## 1.0.1 (Mar 4, 2019)
|
|
82
|
+
|
|
83
|
+
- Removed setTimeout use
|
|
84
|
+
- Added Skeleton components for
|
|
85
|
+
- CvFileUpload
|
|
86
|
+
- CvDropdown
|
|
87
|
+
- CvCodeSnippet
|
|
88
|
+
- CvCheckbox
|
|
89
|
+
|
|
90
|
+
## 1.0.0 (Feb 19, 2019) :balloon: :tada: :balloon: :coffee: :balloon:
|
|
91
|
+
|
|
92
|
+
- Add actions option to data table
|
|
93
|
+
- Add batch actions option to data table
|
|
94
|
+
- Updated table pagination
|
|
95
|
+
- Add CvDataTableRow and CvDataTableCell to allow HTML use in tables
|
|
96
|
+
- Add CvButtonSkeleton
|
|
97
|
+
- Add overflow menu option to table.
|
|
98
|
+
|
|
99
|
+
## 1.0.0-beta.4 (Feb 13, 2019)
|
|
100
|
+
|
|
101
|
+
- Fix initially hidden expanding tile behaviour.
|
|
102
|
+
- Add CvBreadCrumbSkeleton
|
|
103
|
+
|
|
104
|
+
## 1.0.0-beta.3 (Feb 13, 2019)
|
|
105
|
+
|
|
106
|
+
- Add header and footer slots for CvTable
|
|
107
|
+
- Set button type="button" for all buttons except CvButton. This prevents form submit if a component happens to be inside a form.
|
|
108
|
+
- Added CvSkeletonText, CvAccordionSeketon and CvAccordionItemSekeleton.
|
|
109
|
+
|
|
110
|
+
## v1.0.0-beta.2 (Feb 10, 2019)
|
|
111
|
+
|
|
112
|
+
- Removed Symbol use in prop types, fixing CvRadioButton, CvSlider and CvPagination use with the minified compiled modules.
|
|
113
|
+
- Minor story fixes
|
|
114
|
+
- Fix typo in CvContentSwitcherContent component name
|
|
115
|
+
|
|
116
|
+
## v1.0.0-beta.1 (Feb 10, 2019)
|
|
117
|
+
|
|
118
|
+
FAIL
|
|
119
|
+
|
|
120
|
+
## v1.0.0-beta.0 (Feb 8, 2019)
|
|
121
|
+
|
|
122
|
+
- Storybook: update views
|
|
123
|
+
- CvFileUploader: added v-model and missing parts to
|
|
124
|
+
- CvToolbar: added
|
|
125
|
+
- CvDataTable: added minus the filter/toolbar
|
|
126
|
+
- Tests - Added unit test suite and first tests (CvTag)
|
|
127
|
+
- CvContentSwitcher - Added non-DOM direct content managment
|
|
128
|
+
- Turned helper and invalidMessages into slops (slot-prop hybrid)
|
|
129
|
+
- CvIcon - Downgraded to helper component to remove dependency on carbon-icons
|
|
130
|
+
- Renamed UMD and CommonJS modules from carbon-components-vue... to carbon-vue...
|
|
131
|
+
|
|
132
|
+
## v0.3.0 (Feb 1, 2019)
|
|
133
|
+
|
|
134
|
+
- Initial data-viz/bar-graph added
|
|
135
|
+
- Story corrections
|
|
136
|
+
- Change use of \$parent to prefer events
|
|
137
|
+
- Chagne use of \$children to check child type
|
|
138
|
+
- Fix overflow and interactive-tooltip position on scroll/resize
|
|
139
|
+
|
|
140
|
+
## v0.2.9 (Jan 25, 2019)
|
|
141
|
+
|
|
142
|
+
- Add gauge component - story is Data-viz/CvGauge
|
|
143
|
+
- Add pie chart component - story is Data-viz/CvPieChart
|
|
144
|
+
- Add router-link version of CvLink
|
|
145
|
+
|
|
146
|
+
## v0.2.8 (Jan 23, 2019)
|
|
147
|
+
|
|
148
|
+
Correct duff deploy
|
|
149
|
+
|
|
150
|
+
## v0.2.7 (Jan 23, 2019)
|
|
151
|
+
|
|
152
|
+
- Fix click on modal dialog closing it
|
|
153
|
+
|
|
154
|
+
## v0.2.6 (Jan 23, 2019)
|
|
155
|
+
|
|
156
|
+
- Fix tab out of modal
|
|
157
|
+
- Remove unused vars
|
|
158
|
+
|
|
159
|
+
## v0.2.5 - Minor fixes (Jan 22, 2019)
|
|
160
|
+
|
|
161
|
+
- Make structured list native Vue
|
|
162
|
+
- Simplify structured list components
|
|
163
|
+
- Removed non-core CSS
|
|
164
|
+
- Fix to paginator reactivity
|
|
165
|
+
|
|
166
|
+
## v0.2.4 - Minor fixes (Jan 18, 2019)
|
|
167
|
+
|
|
168
|
+
- Make tooltip native Vue
|
|
169
|
+
- Tidy up a bit of unused code
|
|
170
|
+
- Make tabs native Vue and use carbon react pattern (breaks previous tab use)
|
|
171
|
+
|
|
172
|
+
## v0.2.3 - Minor fixes (Jan 14, 2019)
|
|
173
|
+
|
|
174
|
+
- Fix modal hide on main body click and show visible in story.
|
|
175
|
+
- Make cv-search native Vue.
|
|
176
|
+
- Make cv-number-input native Vue.
|
|
177
|
+
|
|
178
|
+
## v0.2.2 - Minor fixes (Jan 10, 2019)
|
|
179
|
+
|
|
180
|
+
- Fixed expandable tile and made it native Vue
|
|
181
|
+
- Made notification componentes native Vue
|
|
182
|
+
- Tidied toggle stories.
|
|
183
|
+
|
|
184
|
+
## v0.2.0 - Moved to Storybook 4 (Jan 10, 2019)
|
|
185
|
+
|
|
186
|
+
- Knobs now operate as Vue properties the template is no longer replaced each time (as per Knobs in storybook 3)
|
|
187
|
+
- Story kinds array replaced by variants which define the settings used in each story.
|
|
188
|
+
- NOTE: slots no longer editable
|
|
189
|
+
|
|
190
|
+
## v0.1.0 - First draft of carbon-components-vue implementation (Dec 3, 2018)
|
|
191
|
+
|
|
192
|
+
This initial set of components, based on v9 of carbon components, includes draft implementations of all non-data viz components found in the core carbon components library. Public parts of the component: properties, events, data, methods, computed values are at this point subject to review at this point.
|
package/README.md
CHANGED
|
@@ -6,6 +6,10 @@
|
|
|
6
6
|
> Vue implementation of the Carbon Design System
|
|
7
7
|
> A collection of [Carbon Components](https://github.com/carbon-design-system/carbon-components) implemented using <img src="https://vuejs.org/images/logo.png" width="20" alt="Vue logo"> [Vue.js](https://vuejs.org/).
|
|
8
8
|
|
|
9
|
+
<div style="text-align: center">
|
|
10
|
+
<img src="./docs/AtCarbonVue.png" alt="@carbon/vue" height="200px">
|
|
11
|
+
</div>
|
|
12
|
+
|
|
9
13
|
## Usage
|
|
10
14
|
|
|
11
15
|
### General
|
|
@@ -26,7 +30,7 @@ View available Vue Components [here](http://vue.carbondesignsystem.com). Usage i
|
|
|
26
30
|
Run the following command using [npm](https://www.npmjs.com/):
|
|
27
31
|
|
|
28
32
|
```bash
|
|
29
|
-
npm install
|
|
33
|
+
npm install @carbon/vue
|
|
30
34
|
```
|
|
31
35
|
|
|
32
36
|
If you prefer [Yarn](https://yarnpkg.com/en/), use the following command instead:
|
|
@@ -35,7 +39,7 @@ If you prefer [Yarn](https://yarnpkg.com/en/), use the following command instead
|
|
|
35
39
|
yarn add @carbon/vue
|
|
36
40
|
```
|
|
37
41
|
|
|
38
|
-
NOTE: https://www.npmjs.com/package/current-script-polyfill is required for older browsers (e.g. IE11)
|
|
42
|
+
NOTE: (https://www.npmjs.com/package/current-script-polyfill) is required for older browsers (e.g. IE11)
|
|
39
43
|
|
|
40
44
|
### Using all at once
|
|
41
45
|
|
|
@@ -91,166 +95,15 @@ Vue.use(window['carbon-vue'].default);
|
|
|
91
95
|
. . . <cv-button>Hello</cv-button>
|
|
92
96
|
```
|
|
93
97
|
|
|
94
|
-
##
|
|
95
|
-
|
|
96
|
-
**1.0.0**
|
|
97
|
-
|
|
98
|
-
- Add actions option to data table
|
|
99
|
-
- Add batch actions option to data table
|
|
100
|
-
- Updated table pagination
|
|
101
|
-
- Add CvDataTableRow and CvDataTableCell to allow HTML use in tables
|
|
102
|
-
- Add CvButtonSkeleton
|
|
103
|
-
- Add overflow menu option to table.
|
|
104
|
-
|
|
105
|
-
**1.0.0-beta.4**
|
|
106
|
-
|
|
107
|
-
- Fix initially hidden expanding tile behaviour.
|
|
108
|
-
- Add CvBreadCrumbSkeleton
|
|
109
|
-
|
|
110
|
-
**1.0.0-beta.3**
|
|
111
|
-
|
|
112
|
-
- Add header and footer slots for CvTable
|
|
113
|
-
- Set button type="button" for all buttons except CvButton. This prevents form submit if a component happens to be inside a form.
|
|
114
|
-
- Added CvSkeletonText, CvAccordionSeketon and CvAccordionItemSekeleton.
|
|
115
|
-
|
|
116
|
-
**v1.0.0-beta.2**
|
|
117
|
-
|
|
118
|
-
- Removed Symbol use in prop types, fixing CvRadioButton, CvSlider and CvPagination use with the minified compiled modules.
|
|
119
|
-
- Minor story fixes
|
|
120
|
-
|
|
121
|
-
**v1.0.0-beta.1**
|
|
122
|
-
|
|
123
|
-
- Fix typo in CvContentSwitcherContent component name
|
|
124
|
-
|
|
125
|
-
**v1.0.0-beta.0**
|
|
126
|
-
|
|
127
|
-
- Storybook: update views
|
|
128
|
-
- CvFileUploader: added v-model and missing parts to
|
|
129
|
-
- CvToolbar: added
|
|
130
|
-
- CvDataTable: added minus the filter/toolbar
|
|
131
|
-
- Tests - Added unit test suite and first tests (CvTag)
|
|
132
|
-
- CvContentSwitcher - Added non-DOM direct content managment
|
|
133
|
-
- Turned helper and invalidMessages into slops (slot-prop hybrid)
|
|
134
|
-
- CvIcon - Downgraded to helper component to remove dependency on carbon-icons
|
|
135
|
-
- Renamed UMD and CommonJS modules from carbon-components-vue... to carbon-vue...
|
|
136
|
-
|
|
137
|
-
**v0.3.0**
|
|
138
|
-
|
|
139
|
-
- Initial data-viz/bar-graph added
|
|
140
|
-
- Story corrections
|
|
141
|
-
- Change use of \$parent to prefer events
|
|
142
|
-
- Chagne use of \$children to check child type
|
|
143
|
-
- Fix overflow and interactive-tooltip position on scroll/resize
|
|
144
|
-
|
|
145
|
-
**v0.2.9**
|
|
146
|
-
|
|
147
|
-
- Add gauge component - story is Data-viz/CvGauge
|
|
148
|
-
- Add pie chart component - story is Data-viz/CvPieChart
|
|
149
|
-
- Add router-link version of CvLink
|
|
150
|
-
|
|
151
|
-
**v0.2.8**
|
|
152
|
-
Correct duff deploy
|
|
153
|
-
|
|
154
|
-
**v0.2.7**
|
|
155
|
-
|
|
156
|
-
- Fix click on modal dialog closing it
|
|
157
|
-
|
|
158
|
-
**v0.2.6**
|
|
159
|
-
|
|
160
|
-
- Fix tab out of modal
|
|
161
|
-
- Remove unused vars
|
|
162
|
-
|
|
163
|
-
**v0.2.5 - Minor fixes**
|
|
164
|
-
|
|
165
|
-
- Make structured list native Vue
|
|
166
|
-
- Simplify structured list components
|
|
167
|
-
- Removed non-core CSS
|
|
168
|
-
- Fix to paginator reactivity
|
|
169
|
-
|
|
170
|
-
**v0.2.4 - Minor fixes**
|
|
171
|
-
|
|
172
|
-
- Make tooltip native Vue
|
|
173
|
-
- Tidy up a bit of unused code
|
|
174
|
-
- Make tabs native Vue and use carbon react pattern (breaks previous tab use)
|
|
175
|
-
|
|
176
|
-
**v0.2.3 - Minor fixes**
|
|
177
|
-
|
|
178
|
-
- Fix modal hide on main body click and show visible in story.
|
|
179
|
-
- Make cv-search native Vue.
|
|
180
|
-
- Make cv-number-input native Vue.
|
|
181
|
-
|
|
182
|
-
**v0.2.2 - Minor fixes**
|
|
183
|
-
|
|
184
|
-
- Fixed expandable tile and made it native Vue
|
|
185
|
-
- Made notification componentes native Vue
|
|
186
|
-
- Tidied toggle stories.
|
|
187
|
-
|
|
188
|
-
**v0.2.0 - Moved to Storybook 4**
|
|
189
|
-
|
|
190
|
-
- Knobs now operate as Vue properties the template is no longer replaced each time (as per Knobs in storybook 3)
|
|
191
|
-
- Story kinds array replaced by variants which define the settings used in each story.
|
|
192
|
-
- NOTE: slots no longer editable
|
|
193
|
-
|
|
194
|
-
**v0.1.0 - First draft of carbon-components-vue implementation**
|
|
98
|
+
## Change log
|
|
195
99
|
|
|
196
|
-
|
|
100
|
+
See [CHANGELOG.md](CHANGELOG.md)
|
|
197
101
|
|
|
198
102
|
### Current Components
|
|
199
103
|
|
|
200
104
|
View available Vue.js components [here](http://vue.carbondesignsystem.com). Usage information is available when you click the blue ? icon in the top right corner of the selected component.
|
|
201
105
|
|
|
202
|
-
|
|
203
|
-
:white_check_mark: Ready
|
|
204
|
-
:warning: Under review
|
|
205
|
-
:heavy_minus_sign: Not available
|
|
206
|
-
|
|
207
|
-
| **Components** | **State** | **Link** |
|
|
208
|
-
| ------------------------ | ------------------ | -------------------------------------------------------------------------------- |
|
|
209
|
-
| **CvAccordion** | :white_check_mark: | http://vue.carbondesignsystem.com/?selectedKind=CvAccordion |
|
|
210
|
-
| CvBarGraph | :warning: | http://vue.carbondesignsystem.com/?selectedKind=Data-Viz%2FCvBarGraph |
|
|
211
|
-
| **CvBreadcrumb** | :white_check_mark: | http://vue.carbondesignsystem.com/?selectedKind=CvBreadcrumb |
|
|
212
|
-
| **CvButton** | :white_check_mark: | http://vue.carbondesignsystem.com/?selectedKind=CvButton |
|
|
213
|
-
| **CvCheckbox** | :white_check_mark: | http://vue.carbondesignsystem.com/?selectedKind=CvCheckbox |
|
|
214
|
-
| **CvCodeSnippet** | :white_check_mark: | http://vue.carbondesignsystem.com/?selectedKind=CvCodeSnippet&selectedStory=All |
|
|
215
|
-
| **CvContentSwitcher** | :white_check_mark: | http://vue.carbondesignsystem.com/?selectedKind=CvContentSwitcher |
|
|
216
|
-
| CvDataTable | :white_check_mark: | https://github.com/carbon-design-system/carbon-components-vue/issues/51 |
|
|
217
|
-
| |
|
|
218
|
-
| CvDatePicker | :white_check_mark: | http://vue.carbondesignsystem.com/?selectedKind=CvDatePicker&selectedStory=All |
|
|
219
|
-
| **CvDropdown** | :white_check_mark: | http://vue.carbondesignsystem.com/?selectedKind=CvDropdown |
|
|
220
|
-
| |
|
|
221
|
-
| **CvFileUploader** | :white_check_mark: | http://vue.carbondesignsystem.com/?selectedKind=CvFileUploader&selectedStory=All |
|
|
222
|
-
| **CvForm** | :white_check_mark: | http://vue.carbondesignsystem.com/?selectedKind=CvForm |
|
|
223
|
-
| **CvGauge** | :warning: | https://github.com/carbon-design-system/carbon-components-vue/issues/49 |
|
|
224
|
-
| |
|
|
225
|
-
| **CvInlineNotification** | :white_check_mark: | http://vue.carbondesignsystem.com/?selectedKind=CvInlineNotification |
|
|
226
|
-
| CvLineGraph | :heavy_minus_sign: | https://github.com/carbon-design-system/carbon-components-vue/issues/53 |
|
|
227
|
-
| |
|
|
228
|
-
| **CvLink** | :white_check_mark: | http://vue.carbondesignsystem.com/?selectedKind=CvLink |
|
|
229
|
-
| **CvList** | :white_check_mark: | http://vue.carbondesignsystem.com/?selectedKind=CvList |
|
|
230
|
-
| **CvLoading** | :white_check_mark: | http://vue.carbondesignsystem.com/?selectedKind=CvLoading |
|
|
231
|
-
| **CvModal** | :white_check_mark: | http://vue.carbondesignsystem.com/?selectedKind=CvModal |
|
|
232
|
-
| **CvNumberInput** | :white_check_mark: | http://vue.carbondesignsystem.com/?selectedKind=CvNumberInput |
|
|
233
|
-
| **CvOverflowMenu** | :white_check_mark: | http://vue.carbondesignsystem.com/?selectedKind=CvOverflowMenu |
|
|
234
|
-
| **CvPagination** | :white_check_mark: | http://vue.carbondesignsystem.com/?selectedKind=CvPagination&selectedStory=All |
|
|
235
|
-
| CvPieChart | :warning: | https://github.com/carbon-design-system/carbon-components-vue/issues/52 |
|
|
236
|
-
| |
|
|
237
|
-
| **CvProgress** | :white_check_mark: | http://vue.carbondesignsystem.com/?selectedKind=CvProgress |
|
|
238
|
-
| **CvRadioButton** | :white_check_mark: | http://vue.carbondesignsystem.com/?selectedKind=CvRadioButton |
|
|
239
|
-
| CvScatterPlot | :heavy_minus_sign: | https://github.com/carbon-design-system/carbon-components-vue/issues/50 |
|
|
240
|
-
| |
|
|
241
|
-
| **CvSearch** | :white_check_mark: | http://vue.carbondesignsystem.com/?selectedKind=CvSearch |
|
|
242
|
-
| **CvSelect** | :white_check_mark: | http://vue.carbondesignsystem.com/?selectedKind=CvSelect |
|
|
243
|
-
| **CvSlider** | :white_check_mark: | http://vue.carbondesignsystem.com/?selectedKind=CvSlider |
|
|
244
|
-
| **CvStructuredList** | :white_check_mark: | http://vue.carbondesignsystem.com/?selectedKind=CvStructuredList |
|
|
245
|
-
| **CvTabs** | :white_check_mark: | http://vue.carbondesignsystem.com/?selectedKind=CvTabs |
|
|
246
|
-
| **CvTag** | :white_check_mark: | http://vue.carbondesignsystem.com/?selectedKind=CvTag |
|
|
247
|
-
| **CvTextArea** | :white_check_mark: | http://vue.carbondesignsystem.com/?selectedKind=CvTextArea |
|
|
248
|
-
| **CvTextInput** | :white_check_mark: | http://vue.carbondesignsystem.com/?selectedKind=CvTextInput |
|
|
249
|
-
| CvTimePicker | :white_check_mark: | http://vue.carbondesignsystem.com/?selectedKind=CvTimePicker&selectedStory=All |
|
|
250
|
-
| **CvTile** | :white_check_mark: | http://vue.carbondesignsystem.com/?selectedKind=CvTile |
|
|
251
|
-
| **CvToastNotification** | :white_check_mark: | http://vue.carbondesignsystem.com/?selectedKind=CvToastNotification |
|
|
252
|
-
| **CvToggle** | :white_check_mark: | http://vue.carbondesignsystem.com/?selectedKind=CvToggle |
|
|
253
|
-
| **CvTooltip** | :white_check_mark: | http://vue.carbondesignsystem.com/?selectedKind=CvTooltip |
|
|
106
|
+
See [component status pages](https://www.carbondesignsystem.com/component-status) for the status of each component.
|
|
254
107
|
|
|
255
108
|
## Development
|
|
256
109
|
|
|
@@ -1569,12 +1569,12 @@ $exports.store = store;
|
|
|
1569
1569
|
"use strict";
|
|
1570
1570
|
__webpack_require__.r(__webpack_exports__);
|
|
1571
1571
|
|
|
1572
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
1572
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"64a18538-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/data-viz/cv-gauge/cv-gauge.vue?vue&type=template&id=e4b71be0&
|
|
1573
1573
|
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"cv-gauge"},[_c('h1',{staticClass:"bx--graph-header"},[_vm._v(_vm._s(_vm.header))]),_c('div',{staticClass:"cv-gauge__container"},[_c('svg'),_vm._m(0)])])}
|
|
1574
1574
|
var staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"cv-gauge__text"},[_c('p',{staticClass:"cv-gauge__amount"}),_c('p',{staticClass:"cv-gauge__total"})])}]
|
|
1575
1575
|
|
|
1576
1576
|
|
|
1577
|
-
// CONCATENATED MODULE: ./src/data-viz/cv-gauge/cv-gauge.vue?vue&type=template&id=
|
|
1577
|
+
// CONCATENATED MODULE: ./src/data-viz/cv-gauge/cv-gauge.vue?vue&type=template&id=e4b71be0&
|
|
1578
1578
|
|
|
1579
1579
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es6.function.name.js
|
|
1580
1580
|
var es6_function_name = __webpack_require__("7f7f");
|
|
@@ -18429,12 +18429,12 @@ if (typeof __e == 'number') __e = core; // eslint-disable-line no-undef
|
|
|
18429
18429
|
"use strict";
|
|
18430
18430
|
__webpack_require__.r(__webpack_exports__);
|
|
18431
18431
|
|
|
18432
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
18432
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"64a18538-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/data-viz/cv-bar-graph/cv-bar-graph.vue?vue&type=template&id=1741cacb&
|
|
18433
18433
|
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"cv-bar-graph",class:{ 'cv-bar-graph--empty': _vm.noData }},[_c('svg',{ref:"svg",staticClass:"cv-bar-graph__svg"},[_c('g',{ref:"root",staticClass:"cv-bar-graph__root"},[_c('g',{ref:"xAxis",staticClass:"cv-bar-graph__x-axis"},[_c('text',{ref:"xAxisLabel",staticClass:"cv-bar-graph__x-axis-label"})]),_c('g',{ref:"yAxis",staticClass:"cv-bar-graph__y-axis"},[_c('text',{ref:"yAxisLabel",staticClass:"cv-bar-graph__y-axis-label"})])])]),(_vm.keyLabels)?_c('div',{ref:"key",staticClass:"cv-bar-graph__key"},[_c('span',{staticClass:"cv-bar-graph__key-title"},[_vm._v("Key")]),_vm._l((_vm.keyLabels),function(keyLabel,i){return _c('div',{key:keyLabel,staticClass:"cv-bar-graph__key-entry"},[_c('div',{staticClass:"cv-bar-graph__key-entry-swatch",style:({ background: _vm.colors(i) })}),_vm._v("\n "+_vm._s(keyLabel)+"\n ")])})],2):_vm._e(),_c('div',{ref:"emptyContent",staticClass:"cv-bar-graph__empty-content"},[_c('div',{staticClass:"cv-bar-graph__empty-content-inner"},[_vm._t("emptyContent",[_vm._v(_vm._s(_vm.emptyText))])],2)]),_c('div',{ref:"tooltip",staticClass:"cv-bar-graph__tooltip"})])}
|
|
18434
18434
|
var staticRenderFns = []
|
|
18435
18435
|
|
|
18436
18436
|
|
|
18437
|
-
// CONCATENATED MODULE: ./src/data-viz/cv-bar-graph/cv-bar-graph.vue?vue&type=template&id=
|
|
18437
|
+
// CONCATENATED MODULE: ./src/data-viz/cv-bar-graph/cv-bar-graph.vue?vue&type=template&id=1741cacb&
|
|
18438
18438
|
|
|
18439
18439
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es6.function.name.js
|
|
18440
18440
|
var es6_function_name = __webpack_require__("7f7f");
|
|
@@ -22146,12 +22146,12 @@ module.exports = __webpack_require__("584a").Array.isArray;
|
|
|
22146
22146
|
"use strict";
|
|
22147
22147
|
__webpack_require__.r(__webpack_exports__);
|
|
22148
22148
|
|
|
22149
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
22149
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"64a18538-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/data-viz/cv-pie-chart/cv-pie-chart.vue?vue&type=template&id=5acae14c&
|
|
22150
22150
|
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"cv-pie-chart"},[_c('h2',{staticClass:"bx--graph-header"},[_vm._v(_vm._s(_vm.header))]),_c('div',{staticClass:"cv-pie-chart__container"},[_c('svg',{attrs:{"width":_vm.width,"height":_vm.height}},[_c('g')]),_vm._m(0)])])}
|
|
22151
22151
|
var staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"cv-pie-chart__tooltip"},[_c('p',{staticClass:"cv-pie-chart__amount"}),_c('p',{staticClass:"cv-pie-chart__item"})])}]
|
|
22152
22152
|
|
|
22153
22153
|
|
|
22154
|
-
// CONCATENATED MODULE: ./src/data-viz/cv-pie-chart/cv-pie-chart.vue?vue&type=template&id=
|
|
22154
|
+
// CONCATENATED MODULE: ./src/data-viz/cv-pie-chart/cv-pie-chart.vue?vue&type=template&id=5acae14c&
|
|
22155
22155
|
|
|
22156
22156
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es6.function.name.js
|
|
22157
22157
|
var es6_function_name = __webpack_require__("7f7f");
|