@epam/ai-dial-publish-panel 1.1.0-dev.199 → 1.1.0-dev.203
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/components/PublishAccessRuleEditor/PublishAccessRuleEditor.d.ts +2 -72
- package/components/PublishAccessRuleEditor/PublishAccessRuleEditor.d.ts.map +1 -1
- package/components/PublishAccessRules/PublishAccessRules.d.ts +5 -26
- package/components/PublishAccessRules/PublishAccessRules.d.ts.map +1 -1
- package/components/PublishFoldersTree/PublishFoldersTree.d.ts +1 -60
- package/components/PublishFoldersTree/PublishFoldersTree.d.ts.map +1 -1
- package/components/PublishPanel/PublishPanel.d.ts +5 -19
- package/components/PublishPanel/PublishPanel.d.ts.map +1 -1
- package/components/PublishPanel/StandalonePublishPanel.d.ts +3 -0
- package/components/PublishPanel/StandalonePublishPanel.d.ts.map +1 -1
- package/index.css +1 -1
- package/index.d.ts +5 -3
- package/index.d.ts.map +1 -1
- package/index.js +5225 -5189
- package/models/publish-access-rule-editor.d.ts +83 -0
- package/models/publish-access-rule-editor.d.ts.map +1 -0
- package/models/publish-access-rules-styles.d.ts +25 -0
- package/models/publish-access-rules-styles.d.ts.map +1 -0
- package/models/publish-folders-tree.d.ts +60 -0
- package/models/publish-folders-tree.d.ts.map +1 -0
- package/models/publish-panel-styles.d.ts +32 -0
- package/models/publish-panel-styles.d.ts.map +1 -0
- package/package.json +4 -4
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { CSSProperties } from 'react';
|
|
2
|
+
import { PublicationRule } from './publish';
|
|
3
|
+
/** Text overrides for the access-rule editor. */
|
|
4
|
+
export interface PublishAccessRuleEditorLabels {
|
|
5
|
+
/** Source picker label. Defaults to `'Source'`. */
|
|
6
|
+
sourceLabel?: string;
|
|
7
|
+
/** Source picker placeholder. Defaults to `'Select...'`. */
|
|
8
|
+
sourcePlaceholder?: string;
|
|
9
|
+
/** Function picker label. Defaults to `'Function'`. */
|
|
10
|
+
functionLabel?: string;
|
|
11
|
+
/** EQUAL option label. Defaults to `'Equal'`. */
|
|
12
|
+
equalOptionLabel?: string;
|
|
13
|
+
/** CONTAIN option label. Defaults to `'Contain'`. */
|
|
14
|
+
containOptionLabel?: string;
|
|
15
|
+
/** REGEX option label. Defaults to `'Regex'`. */
|
|
16
|
+
regexOptionLabel?: string;
|
|
17
|
+
/** Targets field label. Defaults to `'Targets'`. */
|
|
18
|
+
targetsLabel?: string;
|
|
19
|
+
/** Targets field placeholder. Defaults to `'Add a target'`. */
|
|
20
|
+
targetsPlaceholder?: string;
|
|
21
|
+
/** Targets field hint. Defaults to `'Press Enter or comma to add a target.'`. */
|
|
22
|
+
targetsHintLabel?: string;
|
|
23
|
+
/** Pattern field label. Defaults to `'Pattern'`. */
|
|
24
|
+
patternLabel?: string;
|
|
25
|
+
/** Pattern field placeholder. Defaults to `'Enter a regular expression'`. */
|
|
26
|
+
patternPlaceholder?: string;
|
|
27
|
+
/** Invalid-regex message. Defaults to `'Enter a valid regular expression.'`. */
|
|
28
|
+
invalidRegexError?: string;
|
|
29
|
+
/** Required picker message. Defaults to `'This field is required.'`. */
|
|
30
|
+
requiredFieldError?: string;
|
|
31
|
+
/** Required targets message. Defaults to `'Add at least one target.'`. */
|
|
32
|
+
targetsRequiredError?: string;
|
|
33
|
+
/** Save action label. Defaults to `'Save'`. */
|
|
34
|
+
saveLabel?: string;
|
|
35
|
+
/** Cancel action label. Defaults to `'Cancel'`. */
|
|
36
|
+
cancelLabel?: string;
|
|
37
|
+
/** Dialog accessible label. Defaults to `'Add access rule'`. */
|
|
38
|
+
dialogAriaLabel?: string;
|
|
39
|
+
}
|
|
40
|
+
/** Color overrides for the access-rule editor. */
|
|
41
|
+
export interface PublishAccessRuleEditorColors {
|
|
42
|
+
/** Full-screen mobile background. Defaults to `--bg-layer-1`. */
|
|
43
|
+
mobileBackground?: string;
|
|
44
|
+
/** Desktop panel background. Defaults to `--bg-layer-base`. */
|
|
45
|
+
background?: string;
|
|
46
|
+
/** Validation error text color. Defaults to `--text-error`. */
|
|
47
|
+
errorText?: string;
|
|
48
|
+
/** Picker border color. Defaults to `--stroke-tertiary`. */
|
|
49
|
+
selectBorder?: string;
|
|
50
|
+
/** Picker hover border color. Defaults to `--stroke-secondary`. */
|
|
51
|
+
selectBorderHover?: string;
|
|
52
|
+
/** Open picker border color. Defaults to `--stroke-info`. */
|
|
53
|
+
selectBorderOpen?: string;
|
|
54
|
+
/** Focused picker border color. Defaults to `--stroke-info`. */
|
|
55
|
+
selectBorderFocus?: string;
|
|
56
|
+
}
|
|
57
|
+
/** Style overrides for the access-rule editor. */
|
|
58
|
+
export interface PublishAccessRuleEditorStyles {
|
|
59
|
+
/** Color overrides. */
|
|
60
|
+
colors?: PublishAccessRuleEditorColors;
|
|
61
|
+
/** Additional CSS custom properties applied to the editor root. */
|
|
62
|
+
cssVars?: CSSProperties;
|
|
63
|
+
}
|
|
64
|
+
/** Props for the access-rule editor. */
|
|
65
|
+
export interface PublishAccessRuleEditorProps {
|
|
66
|
+
/** Options offered in the source picker. */
|
|
67
|
+
sourceOptions: string[];
|
|
68
|
+
/** Called with the completed rule. */
|
|
69
|
+
onSave: (rule: PublicationRule) => void;
|
|
70
|
+
/** Called when editing is cancelled. */
|
|
71
|
+
onCancel: () => void;
|
|
72
|
+
/** Disables every control. Defaults to `false`. */
|
|
73
|
+
disabled?: boolean;
|
|
74
|
+
/** Maximum target count. Defaults to `20`. */
|
|
75
|
+
maxTargets?: number;
|
|
76
|
+
/** Text overrides. */
|
|
77
|
+
labels?: PublishAccessRuleEditorLabels;
|
|
78
|
+
/** Typography class for validation errors. Defaults to `'dial-small-text'`. */
|
|
79
|
+
errorClassName?: string;
|
|
80
|
+
/** Style overrides. */
|
|
81
|
+
styles?: PublishAccessRuleEditorStyles;
|
|
82
|
+
}
|
|
83
|
+
//# sourceMappingURL=publish-access-rule-editor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"publish-access-rule-editor.d.ts","sourceRoot":"","sources":["../../src/models/publish-access-rule-editor.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAC3C,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AAEjD,iDAAiD;AACjD,MAAM,WAAW,6BAA6B;IAC5C,mDAAmD;IACnD,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,4DAA4D;IAC5D,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,uDAAuD;IACvD,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,iDAAiD;IACjD,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,qDAAqD;IACrD,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,iDAAiD;IACjD,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,oDAAoD;IACpD,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,+DAA+D;IAC/D,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,iFAAiF;IACjF,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,oDAAoD;IACpD,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,6EAA6E;IAC7E,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,gFAAgF;IAChF,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,wEAAwE;IACxE,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,0EAA0E;IAC1E,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,+CAA+C;IAC/C,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,mDAAmD;IACnD,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,gEAAgE;IAChE,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B;AAED,kDAAkD;AAClD,MAAM,WAAW,6BAA6B;IAC5C,iEAAiE;IACjE,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,+DAA+D;IAC/D,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,+DAA+D;IAC/D,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,4DAA4D;IAC5D,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,mEAAmE;IACnE,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,6DAA6D;IAC7D,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,gEAAgE;IAChE,iBAAiB,CAAC,EAAE,MAAM,CAAC;CAC5B;AAED,kDAAkD;AAClD,MAAM,WAAW,6BAA6B;IAC5C,uBAAuB;IACvB,MAAM,CAAC,EAAE,6BAA6B,CAAC;IACvC,mEAAmE;IACnE,OAAO,CAAC,EAAE,aAAa,CAAC;CACzB;AAED,wCAAwC;AACxC,MAAM,WAAW,4BAA4B;IAC3C,4CAA4C;IAC5C,aAAa,EAAE,MAAM,EAAE,CAAC;IACxB,sCAAsC;IACtC,MAAM,EAAE,CAAC,IAAI,EAAE,eAAe,KAAK,IAAI,CAAC;IACxC,wCAAwC;IACxC,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,mDAAmD;IACnD,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,8CAA8C;IAC9C,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,sBAAsB;IACtB,MAAM,CAAC,EAAE,6BAA6B,CAAC;IACvC,+EAA+E;IAC/E,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,uBAAuB;IACvB,MAAM,CAAC,EAAE,6BAA6B,CAAC;CACxC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { CSSProperties } from 'react';
|
|
2
|
+
import { PublishAccessRuleEditorStyles } from './publish-access-rule-editor';
|
|
3
|
+
/** Color overrides for the access-rules section. */
|
|
4
|
+
export interface PublishAccessRulesColors {
|
|
5
|
+
/** Rule row background. Defaults to `--bg-layer-base`. */
|
|
6
|
+
ruleBackground?: string;
|
|
7
|
+
/** Section heading text color. Defaults to `--text-primary`. */
|
|
8
|
+
headingText?: string;
|
|
9
|
+
/** Hint text color. Defaults to `--text-primary`. */
|
|
10
|
+
hintText?: string;
|
|
11
|
+
/** Loading message text color. Defaults to `--text-primary`. */
|
|
12
|
+
loadingText?: string;
|
|
13
|
+
/** Rule chip text color. Defaults to `--text-primary`. */
|
|
14
|
+
ruleText?: string;
|
|
15
|
+
}
|
|
16
|
+
/** Style overrides for the access-rules section and its editor. */
|
|
17
|
+
export interface PublishAccessRulesStyles {
|
|
18
|
+
/** Color overrides for the section. */
|
|
19
|
+
colors?: PublishAccessRulesColors;
|
|
20
|
+
/** Style overrides forwarded to the nested rule editor. */
|
|
21
|
+
editor?: PublishAccessRuleEditorStyles;
|
|
22
|
+
/** Additional CSS custom properties applied to the section root. */
|
|
23
|
+
cssVars?: CSSProperties;
|
|
24
|
+
}
|
|
25
|
+
//# sourceMappingURL=publish-access-rules-styles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"publish-access-rules-styles.d.ts","sourceRoot":"","sources":["../../src/models/publish-access-rules-styles.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAC3C,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,8BAA8B,CAAC;AAElF,oDAAoD;AACpD,MAAM,WAAW,wBAAwB;IACvC,0DAA0D;IAC1D,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,gEAAgE;IAChE,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,qDAAqD;IACrD,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,gEAAgE;IAChE,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,0DAA0D;IAC1D,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,mEAAmE;AACnE,MAAM,WAAW,wBAAwB;IACvC,uCAAuC;IACvC,MAAM,CAAC,EAAE,wBAAwB,CAAC;IAClC,2DAA2D;IAC3D,MAAM,CAAC,EAAE,6BAA6B,CAAC;IACvC,oEAAoE;IACpE,OAAO,CAAC,EAAE,aAAa,CAAC;CACzB"}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { CSSProperties } from 'react';
|
|
2
|
+
import { PublishFolderNode } from './publish';
|
|
3
|
+
/** Color overrides for the publish destination folder tree. */
|
|
4
|
+
export interface PublishFoldersTreeColors {
|
|
5
|
+
/** Divider color above the folder-creation controls. Defaults to `--stroke-tertiary`. */
|
|
6
|
+
divider?: string;
|
|
7
|
+
}
|
|
8
|
+
/** Style overrides for the publish destination folder tree. */
|
|
9
|
+
export interface PublishFoldersTreeStyles {
|
|
10
|
+
/** Color overrides. */
|
|
11
|
+
colors?: PublishFoldersTreeColors;
|
|
12
|
+
/** Additional class name applied to the component root. */
|
|
13
|
+
className?: string;
|
|
14
|
+
/** Additional CSS custom properties applied to the component root. */
|
|
15
|
+
cssVars?: CSSProperties;
|
|
16
|
+
}
|
|
17
|
+
/** Props for the publish destination folder tree. */
|
|
18
|
+
export interface PublishFoldersTreeProps {
|
|
19
|
+
/** Root-level folder nodes. */
|
|
20
|
+
items: PublishFolderNode[];
|
|
21
|
+
/** Currently selected destination path; `undefined` means no selection and `[]` means the bucket root. */
|
|
22
|
+
selectedPath?: string[];
|
|
23
|
+
/** Called when the selected destination changes. */
|
|
24
|
+
onSelectedPathChange: (path: string[] | undefined) => void;
|
|
25
|
+
/** Called when a new folder name is confirmed. */
|
|
26
|
+
onCreateFolder: (parentPath: string[], name: string) => Promise<void>;
|
|
27
|
+
/** Host-owned search query used to filter the tree. */
|
|
28
|
+
searchQuery: string;
|
|
29
|
+
/** Disables every control. Defaults to `false`. */
|
|
30
|
+
disabled?: boolean;
|
|
31
|
+
/** Label for the folder-creation trigger. Defaults to `'Create new folder'`. */
|
|
32
|
+
createFolderLabel?: string;
|
|
33
|
+
/** Label for the action that cancels folder creation. Defaults to `'Cancel'`. */
|
|
34
|
+
cancelCreatingFolderLabel?: string;
|
|
35
|
+
/** Label for the context-menu action that creates a sibling folder. Defaults to `'Add sibling'`. */
|
|
36
|
+
addSiblingFolderLabel?: string;
|
|
37
|
+
/** Label for the context-menu action that creates a child folder. Defaults to `'Add child'`. */
|
|
38
|
+
addChildFolderLabel?: string;
|
|
39
|
+
/** Initial folder name unless a valid unmatched search query is available. Defaults to `'New folder'`. */
|
|
40
|
+
newFolderDefaultName?: string;
|
|
41
|
+
/** Empty-state message with a `{query}` placeholder. Defaults to `'No folders match "{query}".'`. */
|
|
42
|
+
noResultsLabel?: string;
|
|
43
|
+
/** Validation message for an empty folder name. Defaults to `'Folder name cannot be empty.'`. */
|
|
44
|
+
emptyFolderNameError?: string;
|
|
45
|
+
/** Validation message for a forbidden folder name. Defaults to `'Folder name contains invalid characters.'`. */
|
|
46
|
+
invalidFolderNameError?: string;
|
|
47
|
+
/** Validation message for a duplicate folder name. Defaults to `'A folder with this name already exists.'`. */
|
|
48
|
+
duplicateFolderNameError?: string;
|
|
49
|
+
/** Label for the selectable bucket root. Defaults to `'Organization'`. */
|
|
50
|
+
rootLabel?: string;
|
|
51
|
+
/** Externally controlled expanded folder path keys. */
|
|
52
|
+
expandedPaths?: Set<string>;
|
|
53
|
+
/** Called when expanded folder path keys change. */
|
|
54
|
+
onExpandedPathsChange?: (paths: Set<string>) => void;
|
|
55
|
+
/** Folder path keys currently being fetched by the host. */
|
|
56
|
+
loadingPaths?: Set<string>;
|
|
57
|
+
/** Style overrides. */
|
|
58
|
+
styles?: PublishFoldersTreeStyles;
|
|
59
|
+
}
|
|
60
|
+
//# sourceMappingURL=publish-folders-tree.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"publish-folders-tree.d.ts","sourceRoot":"","sources":["../../src/models/publish-folders-tree.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAC3C,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,WAAW,CAAC;AAEnD,+DAA+D;AAC/D,MAAM,WAAW,wBAAwB;IACvC,yFAAyF;IACzF,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,+DAA+D;AAC/D,MAAM,WAAW,wBAAwB;IACvC,uBAAuB;IACvB,MAAM,CAAC,EAAE,wBAAwB,CAAC;IAClC,2DAA2D;IAC3D,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,sEAAsE;IACtE,OAAO,CAAC,EAAE,aAAa,CAAC;CACzB;AAED,qDAAqD;AACrD,MAAM,WAAW,uBAAuB;IACtC,+BAA+B;IAC/B,KAAK,EAAE,iBAAiB,EAAE,CAAC;IAC3B,0GAA0G;IAC1G,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IACxB,oDAAoD;IACpD,oBAAoB,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,SAAS,KAAK,IAAI,CAAC;IAC3D,kDAAkD;IAClD,cAAc,EAAE,CAAC,UAAU,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,MAAM,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;IACtE,uDAAuD;IACvD,WAAW,EAAE,MAAM,CAAC;IACpB,mDAAmD;IACnD,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,gFAAgF;IAChF,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,iFAAiF;IACjF,yBAAyB,CAAC,EAAE,MAAM,CAAC;IACnC,oGAAoG;IACpG,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B,gGAAgG;IAChG,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,0GAA0G;IAC1G,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,qGAAqG;IACrG,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,iGAAiG;IACjG,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,gHAAgH;IAChH,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAChC,+GAA+G;IAC/G,wBAAwB,CAAC,EAAE,MAAM,CAAC;IAClC,0EAA0E;IAC1E,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,uDAAuD;IACvD,aAAa,CAAC,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC;IAC5B,oDAAoD;IACpD,qBAAqB,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,CAAC,MAAM,CAAC,KAAK,IAAI,CAAC;IACrD,4DAA4D;IAC5D,YAAY,CAAC,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC;IAC3B,uBAAuB;IACvB,MAAM,CAAC,EAAE,wBAAwB,CAAC;CACnC"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { CSSProperties } from 'react';
|
|
2
|
+
import { PublishAccessRulesStyles } from './publish-access-rules-styles';
|
|
3
|
+
import { PublishFoldersTreeStyles } from './publish-folders-tree';
|
|
4
|
+
/** Color overrides for the publish panel body. */
|
|
5
|
+
export interface PublishPanelColors {
|
|
6
|
+
/** Summary row border color. Defaults to `--stroke-tertiary`. */
|
|
7
|
+
summaryBorder?: string;
|
|
8
|
+
/** Summary row background color. Defaults to `--bg-layer-sunken`. */
|
|
9
|
+
summaryBackground?: string;
|
|
10
|
+
/** Version tag border color. Defaults to `--stroke-tertiary`. */
|
|
11
|
+
summaryVersionTagBorder?: string;
|
|
12
|
+
/** Version tag background color. Defaults to `--bg-accent-primary-alpha`. */
|
|
13
|
+
summaryVersionTagBackground?: string;
|
|
14
|
+
/** Version tag text color. Defaults to `--text-accent`. */
|
|
15
|
+
summaryVersionTagText?: string;
|
|
16
|
+
/** Default summary title text color. Defaults to `--text-primary`. */
|
|
17
|
+
summaryTitleText?: string;
|
|
18
|
+
/** Section heading text color. Defaults to `--text-primary`. */
|
|
19
|
+
headingText?: string;
|
|
20
|
+
}
|
|
21
|
+
/** Style overrides for the publish panel body and its nested components. */
|
|
22
|
+
export interface PublishPanelStyles {
|
|
23
|
+
/** Color overrides for the panel body. */
|
|
24
|
+
colors?: PublishPanelColors;
|
|
25
|
+
/** Style overrides forwarded to the destination folder tree. */
|
|
26
|
+
folderTree?: PublishFoldersTreeStyles;
|
|
27
|
+
/** Style overrides forwarded to the access-rules section. */
|
|
28
|
+
accessRules?: PublishAccessRulesStyles;
|
|
29
|
+
/** Additional CSS custom properties applied to the panel body root. */
|
|
30
|
+
cssVars?: CSSProperties;
|
|
31
|
+
}
|
|
32
|
+
//# sourceMappingURL=publish-panel-styles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"publish-panel-styles.d.ts","sourceRoot":"","sources":["../../src/models/publish-panel-styles.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAC3C,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,+BAA+B,CAAC;AAC9E,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,wBAAwB,CAAC;AAEvE,kDAAkD;AAClD,MAAM,WAAW,kBAAkB;IACjC,iEAAiE;IACjE,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,qEAAqE;IACrE,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,iEAAiE;IACjE,uBAAuB,CAAC,EAAE,MAAM,CAAC;IACjC,6EAA6E;IAC7E,2BAA2B,CAAC,EAAE,MAAM,CAAC;IACrC,2DAA2D;IAC3D,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B,sEAAsE;IACtE,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,gEAAgE;IAChE,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,4EAA4E;AAC5E,MAAM,WAAW,kBAAkB;IACjC,0CAA0C;IAC1C,MAAM,CAAC,EAAE,kBAAkB,CAAC;IAC5B,gEAAgE;IAChE,UAAU,CAAC,EAAE,wBAAwB,CAAC;IACtC,6DAA6D;IAC7D,WAAW,CAAC,EAAE,wBAAwB,CAAC;IACvC,uEAAuE;IACvE,OAAO,CAAC,EAAE,aAAa,CAAC;CACzB"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@epam/ai-dial-publish-panel",
|
|
3
3
|
"description": "Publish-to-folder UI and state flow shared by catalog entity publish and conversation publish",
|
|
4
|
-
"version": "1.1.0-dev.
|
|
4
|
+
"version": "1.1.0-dev.203",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./index.js",
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"peerDependencies": {
|
|
20
20
|
"react": "^19.0.0",
|
|
21
21
|
"@tabler/icons-react": "^3.0.0",
|
|
22
|
-
"@epam/ai-dial-chat-shared": "1.1.0-dev.
|
|
23
|
-
"@epam/ai-dial-ui-kit": "^0.13.0-dev.
|
|
24
|
-
"@epam/ai-dial-react-file-manager": "^0.1.0-dev.
|
|
22
|
+
"@epam/ai-dial-chat-shared": "1.1.0-dev.203",
|
|
23
|
+
"@epam/ai-dial-ui-kit": "^0.13.0-dev.64",
|
|
24
|
+
"@epam/ai-dial-react-file-manager": "^0.1.0-dev.22"
|
|
25
25
|
},
|
|
26
26
|
"repository": {
|
|
27
27
|
"type": "git",
|