Skip to content

Commit 9353dbb

Browse files
committed
feat: update FramerComponents export to include animate and useMotionTemplate; fix BLOB_STORAGE link and update query parameter in getDocumentationUrl
1 parent 1ee0aa0 commit 9353dbb

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
import { AnimatePresence, motion, useMotionValue } from 'framer-motion'
1+
import { animate, AnimatePresence, motion, useMotionTemplate, useMotionValue } from 'framer-motion'
22

3-
export { AnimatePresence, motion, useMotionValue }
3+
export { animate, AnimatePresence, motion, useMotionTemplate, useMotionValue }

src/Shared/DocLink/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export const DOCUMENTATION = {
1818
APP_ROLLOUT_DEPLOYMENT_TEMPLATE: 'usage/applications/creating-application/deployment-template/rollout-deployment',
1919
BUILD_STAGE: 'usage/applications/creating-application/ci-pipeline#build-stage',
2020
APP_TAGS: 'usage/applications/create-application#tags',
21-
BLOB_STORAGE: 'getting-started/install/installation-configuration#configuration-of-blob-storage',
21+
BLOB_STORAGE: 'configurations-overview/installation-configuration#configuration-of-blob-storage',
2222
BULK_UPDATE: 'usage/bulk-update',
2323
CHART_GROUP: 'usage/deploy-chart/chart-group',
2424
CHART_LIST: 'usage/deploy-chart/overview-of-charts',

src/Shared/DocLink/utils.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ export const getDocumentationUrl = <T extends boolean = false>({
1818
return docPath
1919
}
2020

21-
return `${DOCUMENTATION_HOME_PAGE}${DOCUMENTATION_VERSION}/${docPath || ''}?client=product_${isEnterprise ? 'ent' : 'oss'}`
21+
return `${DOCUMENTATION_HOME_PAGE}${DOCUMENTATION_VERSION}/${docPath || ''}?utm-source=product_${isEnterprise ? 'ent' : 'oss'}`
2222
}

0 commit comments

Comments
 (0)