@salesforce/webapp-template-feature-react-agentforce-conversation-client-experimental 1.62.2 → 1.63.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/dist/.a4drules/webapp.md +0 -2
- package/dist/CHANGELOG.md +11 -0
- package/dist/force-app/main/default/webapplications/feature-react-agentforce-conversation-client/package-lock.json +4165 -230
- package/dist/force-app/main/default/webapplications/feature-react-agentforce-conversation-client/package.json +12 -5
- package/dist/force-app/main/default/webapplications/feature-react-agentforce-conversation-client/src/components/ui/alert.tsx +76 -0
- package/dist/force-app/main/default/webapplications/feature-react-agentforce-conversation-client/src/components/ui/button.tsx +67 -0
- package/dist/force-app/main/default/webapplications/feature-react-agentforce-conversation-client/src/components/ui/card.tsx +103 -0
- package/dist/force-app/main/default/webapplications/feature-react-agentforce-conversation-client/src/components/ui/dialog.tsx +162 -0
- package/dist/force-app/main/default/webapplications/feature-react-agentforce-conversation-client/src/components/ui/field.tsx +237 -0
- package/dist/force-app/main/default/webapplications/feature-react-agentforce-conversation-client/src/components/ui/index.ts +84 -0
- package/dist/force-app/main/default/webapplications/feature-react-agentforce-conversation-client/src/components/ui/input.tsx +19 -0
- package/dist/force-app/main/default/webapplications/feature-react-agentforce-conversation-client/src/components/ui/label.tsx +22 -0
- package/dist/force-app/main/default/webapplications/feature-react-agentforce-conversation-client/src/components/ui/pagination.tsx +132 -0
- package/dist/force-app/main/default/webapplications/feature-react-agentforce-conversation-client/src/components/ui/select.tsx +193 -0
- package/dist/force-app/main/default/webapplications/feature-react-agentforce-conversation-client/src/components/ui/separator.tsx +26 -0
- package/dist/force-app/main/default/webapplications/feature-react-agentforce-conversation-client/src/components/ui/skeleton.tsx +14 -0
- package/dist/force-app/main/default/webapplications/feature-react-agentforce-conversation-client/src/components/ui/spinner.tsx +16 -0
- package/dist/force-app/main/default/webapplications/feature-react-agentforce-conversation-client/src/components/ui/table.tsx +114 -0
- package/dist/force-app/main/default/webapplications/feature-react-agentforce-conversation-client/src/components/ui/tabs.tsx +88 -0
- package/dist/force-app/main/default/webapplications/feature-react-agentforce-conversation-client/src/components.json +18 -0
- package/dist/force-app/main/default/webapplications/feature-react-agentforce-conversation-client/src/lib/utils.ts +6 -0
- package/dist/force-app/main/default/webapplications/feature-react-agentforce-conversation-client/src/styles/global.css +122 -0
- package/dist/package.json +1 -1
- package/package.json +2 -2
package/dist/.a4drules/webapp.md
CHANGED
|
@@ -75,8 +75,6 @@ Agents consistently miss these. **You must not leave them default.**
|
|
|
75
75
|
- **Motion:** Use high-impact motion (e.g. staggered reveals).
|
|
76
76
|
- **Depth:** Add atmosphere/depth in backgrounds.
|
|
77
77
|
|
|
78
|
-
Follow **webapplications-design-system** expert knowledge for full guidance.
|
|
79
|
-
|
|
80
78
|
# Development Cycle
|
|
81
79
|
|
|
82
80
|
- Execute tasks continuously until all planned items complete in the current iteration.
|
package/dist/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [1.63.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.62.2...v1.63.0) (2026-03-03)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* move shadcn UI into base-react-app ([#188](https://github.com/salesforce-experience-platform-emu/webapps/issues/188)) ([366443f](https://github.com/salesforce-experience-platform-emu/webapps/commit/366443f626c5232ca56c6a5dc6da874bfb955f22))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [1.62.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.62.1...v1.62.2) (2026-03-02)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
|