@automattic/agenttic-ui 0.1.55 → 0.1.56
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/components/chat/page-pattern-modal/dist/esm/components/page-pattern-modal.d.ts +3 -0
- package/dist/components/chat/page-pattern-modal/dist/esm/components/page-pattern-modal.d.ts.map +1 -0
- package/dist/components/chat/page-pattern-modal/dist/esm/components/pattern-selector-control.d.ts +9 -0
- package/dist/components/chat/page-pattern-modal/dist/esm/components/pattern-selector-control.d.ts.map +1 -0
- package/dist/components/chat/page-pattern-modal/dist/esm/components/pattern-selector-item.d.ts +3 -0
- package/dist/components/chat/page-pattern-modal/dist/esm/components/pattern-selector-item.d.ts.map +1 -0
- package/dist/components/chat/page-pattern-modal/dist/esm/index.d.ts +3 -0
- package/dist/components/chat/page-pattern-modal/dist/esm/index.d.ts.map +1 -0
- package/dist/components/chat/page-pattern-modal/dist/esm/pattern-definition.d.ts +2 -0
- package/dist/components/chat/page-pattern-modal/dist/esm/pattern-definition.d.ts.map +1 -0
- package/dist/components/chat/page-pattern-modal/dist/esm/utils/contains-missing-block.d.ts +9 -0
- package/dist/components/chat/page-pattern-modal/dist/esm/utils/contains-missing-block.d.ts.map +1 -0
- package/dist/components/chat/page-pattern-modal/dist/esm/utils/group-utils.d.ts +8 -0
- package/dist/components/chat/page-pattern-modal/dist/esm/utils/group-utils.d.ts.map +1 -0
- package/dist/components/chat/page-pattern-modal/dist/esm/utils/map-blocks-recursively.d.ts +9 -0
- package/dist/components/chat/page-pattern-modal/dist/esm/utils/map-blocks-recursively.d.ts.map +1 -0
- package/dist/components/chat/page-pattern-modal/dist/esm/utils/replace-placeholders.d.ts +3 -0
- package/dist/components/chat/page-pattern-modal/dist/esm/utils/replace-placeholders.d.ts.map +1 -0
- package/dist/components/chat/page-pattern-modal/dist/esm/utils/tracking.d.ts +5 -0
- package/dist/components/chat/page-pattern-modal/dist/esm/utils/tracking.d.ts.map +1 -0
- package/package.json +1 -1
package/dist/components/chat/page-pattern-modal/dist/esm/components/page-pattern-modal.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"page-pattern-modal.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/chat/page-pattern-modal/dist/esm/components/page-pattern-modal.js"],"names":[],"mappings":""}
|
package/dist/components/chat/page-pattern-modal/dist/esm/components/pattern-selector-control.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export function PatternSelectorControl({ instanceId, label, patterns, onPatternSelect, }: {
|
|
2
|
+
instanceId: any;
|
|
3
|
+
label: any;
|
|
4
|
+
patterns?: never[] | undefined;
|
|
5
|
+
onPatternSelect?: (() => undefined) | undefined;
|
|
6
|
+
}): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | null;
|
|
7
|
+
declare const _default: any;
|
|
8
|
+
export default _default;
|
|
9
|
+
//# sourceMappingURL=pattern-selector-control.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pattern-selector-control.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/chat/page-pattern-modal/dist/esm/components/pattern-selector-control.js"],"names":[],"mappings":"AAOO;;;;;kGAKN"}
|
package/dist/components/chat/page-pattern-modal/dist/esm/components/pattern-selector-item.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pattern-selector-item.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/chat/page-pattern-modal/dist/esm/components/pattern-selector-item.js"],"names":[],"mappings":";AAEA,gJAiBC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/chat/page-pattern-modal/dist/esm/index.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pattern-definition.d.ts","sourceRoot":"","sources":["../../../../../../src/components/chat/page-pattern-modal/dist/esm/pattern-definition.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export default containsMissingBlock;
|
|
2
|
+
/**
|
|
3
|
+
* Determines whether the provided collection of Blocks contains any "missing"
|
|
4
|
+
* blocks as determined by the presence of the `core/missing` block type.
|
|
5
|
+
* @param blocks the collection of block objects to check for "missing" block .
|
|
6
|
+
* @returns whether the collection blocks contains any missing blocks.
|
|
7
|
+
*/
|
|
8
|
+
declare function containsMissingBlock(blocks: any): boolean;
|
|
9
|
+
//# sourceMappingURL=contains-missing-block.d.ts.map
|
package/dist/components/chat/page-pattern-modal/dist/esm/utils/contains-missing-block.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"contains-missing-block.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/chat/page-pattern-modal/dist/esm/utils/contains-missing-block.js"],"names":[],"mappings":";AAGA;;;;;GAKG;AACH,4DAYC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Sorts the keys on the group object to have a preferred order.
|
|
3
|
+
* If some groups exist without a preferred order, they will be included last
|
|
4
|
+
* @param preferredGroupOrder the order of group slugs that we want
|
|
5
|
+
* @param groupsObject an object with all group information, with group names as keys
|
|
6
|
+
*/
|
|
7
|
+
export function sortGroupNames(preferredGroupOrder: any, groupsObject: any): any;
|
|
8
|
+
//# sourceMappingURL=group-utils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"group-utils.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/chat/page-pattern-modal/dist/esm/utils/group-utils.js"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,iFASC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export default mapBlocksRecursively;
|
|
2
|
+
/**
|
|
3
|
+
* Recursively maps over a collection of blocks calling the modifier function on
|
|
4
|
+
* each to modify it and returning a collection of new block references.
|
|
5
|
+
* @param blocks an array of block objects
|
|
6
|
+
* @param modifier a callback function used to modify the blocks
|
|
7
|
+
*/
|
|
8
|
+
declare function mapBlocksRecursively(blocks: any, modifier: any): any;
|
|
9
|
+
//# sourceMappingURL=map-blocks-recursively.d.ts.map
|
package/dist/components/chat/page-pattern-modal/dist/esm/utils/map-blocks-recursively.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"map-blocks-recursively.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/chat/page-pattern-modal/dist/esm/utils/map-blocks-recursively.js"],"names":[],"mappings":";AACA;;;;;GAKG;AACH,uEAgBC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"replace-placeholders.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/chat/page-pattern-modal/dist/esm/utils/replace-placeholders.js"],"names":[],"mappings":";AAaA,kFAWC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tracking.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/chat/page-pattern-modal/dist/esm/utils/tracking.js"],"names":[],"mappings":"AAQO,4DAGN;AAKM,6CAYN;AAIM,qCAWN;AAKM,mDAYN"}
|