@asgardeo/javascript 0.16.0 → 0.16.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.
@@ -42,6 +42,8 @@ export declare enum EmbeddedFlowComponentType {
42
42
  Block = "BLOCK",
43
43
  /** Consent component for displaying consent purposes and attributes */
44
44
  Consent = "CONSENT",
45
+ /** Copyable text display component that shows text with a copy-to-clipboard action */
46
+ CopyableText = "COPYABLE_TEXT",
45
47
  /** Divider component for visual separation of content */
46
48
  Divider = "DIVIDER",
47
49
  /** Email input field with validation for email addresses. */
@@ -257,6 +259,11 @@ export interface EmbeddedFlowComponent {
257
259
  * Icon size in pixels (for Icon components).
258
260
  */
259
261
  size?: number;
262
+ /**
263
+ * Data source key for dynamic components (e.g., COPYABLE_TEXT).
264
+ * References a key in additionalData whose value is resolved at render time.
265
+ */
266
+ source?: string;
260
267
  /**
261
268
  * Image source URL (for Image components).
262
269
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@asgardeo/javascript",
3
- "version": "0.16.0",
3
+ "version": "0.16.1",
4
4
  "description": "Framework agnostic JavaScript SDK for Asgardeo.",
5
5
  "keywords": [
6
6
  "asgardeo",
@@ -47,7 +47,7 @@
47
47
  "dependencies": {
48
48
  "tslib": "2.8.1",
49
49
  "jose": "^5.2.0",
50
- "@asgardeo/i18n": "0.4.4"
50
+ "@asgardeo/i18n": "0.4.5"
51
51
  },
52
52
  "publishConfig": {
53
53
  "access": "public"