File tree Expand file tree Collapse file tree
sql-functions/string-functions Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -32,10 +32,10 @@ const config = {
3232
3333 onBrokenAnchors : "ignore" ,
3434 onBrokenLinks : "ignore" ,
35- onBrokenMarkdownLinks : " throw" ,
35+ markdown : { hooks : { onBrokenMarkdownLinks : ' throw' } } ,
3636
3737 future : {
38- experimental_faster : true ,
38+ v4 : true ,
3939 } ,
4040
4141 i18n : {
Original file line number Diff line number Diff line change 1616 "write-heading-ids" : " docusaurus write-heading-ids"
1717 },
1818 "dependencies" : {
19- "@algolia/client-search" : " ^4.20 .0" ,
19+ "@algolia/client-search" : " ^5.45 .0" ,
2020 "@docsearch/react" : " 3" ,
21- "@docusaurus/core" : " 3.7.0 " ,
22- "@docusaurus/faster" : " ^3.7.0 " ,
23- "@docusaurus/plugin-client-redirects" : " ^3.1.1 " ,
24- "@docusaurus/preset-classic" : " 3.7.0 " ,
25- "@docusaurus/theme-search-algolia" : " ^3.1.1 " ,
21+ "@docusaurus/core" : " ^3.9.2 " ,
22+ "@docusaurus/faster" : " ^3.9.2 " ,
23+ "@docusaurus/plugin-client-redirects" : " ^3.9.2 " ,
24+ "@docusaurus/preset-classic" : " ^3.9.2 " ,
25+ "@docusaurus/theme-search-algolia" : " ^3.9.2 " ,
2626 "@mdx-js/react" : " ^3.0.0" ,
2727 "axios" : " ^1.7.8" ,
2828 "clsx" : " ^2.0.0" ,
4444 "webpack-dev-middleware" : " 5.3.4"
4545 },
4646 "devDependencies" : {
47- "@docusaurus/module-type-aliases" : " 3.7.0 " ,
48- "@docusaurus/types" : " 3.7.0 "
47+ "@docusaurus/module-type-aliases" : " ^3.9.2 " ,
48+ "@docusaurus/types" : " ^3.9.2 "
4949 },
5050 "browserslist" : {
5151 "production" : [
Original file line number Diff line number Diff line change 124124 {
125125 "type" : " category" ,
126126 "label" : " Data Loading" ,
127+ "key" : " root-loading" ,
127128 "link" : {
128129 "type" : " doc" ,
129130 "id" : " loading/loading"
223224 {
224225 "type" : " category" ,
225226 "label" : " Catalog" ,
227+ "key" : " datasource-catalog" ,
226228 "link" : {
227229 "type" : " doc" ,
228230 "id" : " data_source/catalog/catalog_intro"
539541 {
540542 "type" : " category" ,
541543 "label" : " Data Loading" ,
544+ "key" : " migration-loading" ,
542545 "items" : [
543546 {
544547 "type" : " autogenerated" ,
Original file line number Diff line number Diff line change 4949 var (--ifm-transition-timing-default );
5050}
5151
52+ .navbar__logo img {
53+ height : 100% !important ;
54+ }
55+
5256.header-slack-link ::before {
5357 content : '' ;
5458 width : 24px ;
Original file line number Diff line number Diff line change 1+ import React from 'react' ;
2+ import Admonition from '@theme-original/Admonition' ;
3+ import MyCustomExperimentalIcon from '@site/static/img/ExperimentalBadge.svg' ;
4+ import MyCustomBetaIcon from '@site/static/img/BetaBadge.svg' ;
5+
6+ export default function AdmonitionWrapper ( props ) {
7+ if ( props . type === 'experimental' ) {
8+ return < Admonition title = { 'Experimental feature' } type = "info" icon = { < span className = 'text-2xl' > < MyCustomExperimentalIcon /> </ span > }
9+ >
10+ { props . children }
11+ </ Admonition >
12+ } else if ( props . type === 'beta' ) {
13+ return < Admonition title = { 'Beta feature' } type = "info" icon = { < span className = 'text-2xl' > < MyCustomBetaIcon /> </ span > }
14+ >
15+ { props . children }
16+ </ Admonition >
17+ } else {
18+ return < Admonition { ...props } /> ;
19+ }
20+ }
You can’t perform that action at this time.
0 commit comments