@gitlab/ui 32.55.0 → 32.59.0

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 CHANGED
@@ -1,3 +1,32 @@
1
+ # [32.59.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v32.58.0...v32.59.0) (2022-01-14)
2
+
3
+
4
+ ### Features
5
+
6
+ * **css:** Addition of gl-font-size-inherit class ([14e64b6](https://gitlab.com/gitlab-org/gitlab-ui/commit/14e64b6697696e6742823d71bdf7fbf0937d5ac4))
7
+ * **GlTable:** Migrate table stories to CSF ([63def60](https://gitlab.com/gitlab-org/gitlab-ui/commit/63def600b134738a5670e4ce1e417a1a4ee0a15a))
8
+
9
+ # [32.58.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v32.57.0...v32.58.0) (2022-01-14)
10
+
11
+
12
+ ### Features
13
+
14
+ * **css:** Addition of .gl-lg-w-25p classes ([d050bda](https://gitlab.com/gitlab-org/gitlab-ui/commit/d050bdafaafca48e44d1096856425ff220f1aef4))
15
+
16
+ # [32.57.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v32.56.0...v32.57.0) (2022-01-14)
17
+
18
+
19
+ ### Features
20
+
21
+ * **css:** Addition Add `gl-sm-pr-3 ` and `gl-sm-w-half` `gl-md-ml-3` utility class ([7630c23](https://gitlab.com/gitlab-org/gitlab-ui/commit/7630c23f4cef0fcc5fbd6ae86a844dda568b88b9))
22
+
23
+ # [32.56.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v32.55.0...v32.56.0) (2022-01-13)
24
+
25
+
26
+ ### Features
27
+
28
+ * **utilities:** add gl-gap-x-3 utility ([ff14af5](https://gitlab.com/gitlab-org/gitlab-ui/commit/ff14af53f7506af410a2d1f9002367dac2b69e53))
29
+
1
30
  # [32.55.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v32.54.2...v32.55.0) (2022-01-13)
2
31
 
3
32
 
@@ -1,12 +1,8 @@
1
- import examples from './examples';
2
-
3
1
  var description = "## Usage\n\nThe `gl-table` component wraps BootstrapVue `b-table` component. `b-table` provides a variety of\nslots for custom data rendering. You can learn more about them in the\n[component documentation](https://bootstrap-vue.org/docs/components/table).\nWhen using the component, pass in the `fields` prop as part of the `$options`, and give each table\ndata and table head its own styles if necessary.\n\n## Internationalization\n\nTo ensure we internationalize field labels, always pass an array of objects for the `fields` prop,\nlike mentioned in the implementation example.\n\n_Full documentation for the\n`field` prop [here.](https://bootstrap-vue.org/docs/components/table#fields-column-definitions)_\n\n## Use `GlTableLite` when possible\n\nIf you don't need all the features of `GlTable`, like filtering, sorting, or\npagination, use `GlTableLite` which offers a subset of `GlTable` features.\n\n## Implementation Example\n\n```html\n<script>\n export default {\n fields: [\n {\n key: 'column_one',\n label: __('Column One'),\n thClass: 'w-60p',\n tdClass: 'table-col d-flex'\n },\n {\n key: 'col_2',\n label: __('Column 2'),\n thClass: 'w-15p',\n tdClass: 'table-col d-flex'\n },\n ];\n }\n</script>\n<template>\n <gl-table :items=\"items\" :fields=\"$options.fields\">\n <template #head(column_one)>\n <div>Column One</div>\n <!-- This is the column head for the first object in `fields` -->\n </template>\n\n <template #cell(column_one)>\n This is the template for column data belonging to the first object\n </template>\n </gl-table>\n</template>\n```\n";
4
2
 
5
3
  var table_documentation = {
6
4
  followsDesignSystem: false,
7
- description,
8
- examples,
9
- bootstrapComponent: 'b-table'
5
+ description
10
6
  };
11
7
 
12
8
  export default table_documentation;