@proveanything/smartlinks-utils-ui 0.10.9 → 0.11.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.
- package/dist/{IconPicker-DKpL5Hcc.d.ts → IconPicker-nhY3wWlB.d.ts} +2 -2
- package/dist/{chunk-2MW54ZVG.js → chunk-3RRHM4LP.js} +97 -4
- package/dist/chunk-3RRHM4LP.js.map +1 -0
- package/dist/components/AssetPicker/index.css +3 -0
- package/dist/components/AssetPicker/index.css.map +1 -1
- package/dist/components/AssetPicker/index.d.ts +1 -1
- package/dist/components/ConditionsEditor/index.css +3 -0
- package/dist/components/ConditionsEditor/index.css.map +1 -1
- package/dist/components/ConditionsEditor/index.d.ts +2 -2
- package/dist/components/FacetRuleEditor/index.d.ts +2 -2
- package/dist/components/FontPicker/index.css +3 -0
- package/dist/components/FontPicker/index.css.map +1 -1
- package/dist/components/FontPicker/index.d.ts +2 -2
- package/dist/components/IconPicker/index.css +3 -0
- package/dist/components/IconPicker/index.css.map +1 -1
- package/dist/components/IconPicker/index.d.ts +2 -2
- package/dist/components/RecordsAdmin/index.css +3 -0
- package/dist/components/RecordsAdmin/index.css.map +1 -1
- package/dist/components/RecordsAdmin/index.d.ts +127 -28
- package/dist/components/RecordsAdmin/index.js +535 -95
- package/dist/components/RecordsAdmin/index.js.map +1 -1
- package/dist/index.css +3 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +53 -3
- package/dist/index.js +32 -1
- package/dist/index.js.map +1 -1
- package/dist/{useAssets-BAtXv6D5.d.ts → useAssets-DwUdZePm.d.ts} +2 -2
- package/package.json +3 -3
- package/dist/chunk-2MW54ZVG.js.map +0 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import
|
|
1
|
+
import React__default from 'react';
|
|
2
2
|
import { d as ConditionsEditorProps } from '../../types-a2DdgZ2H.js';
|
|
3
3
|
export { C as Condition, a as ConditionGroup, b as ConditionType, c as ConditionTypeMeta, F as FacetOption, e as FacetValueOption, S as SelectOption, V as VersionOption } from '../../types-a2DdgZ2H.js';
|
|
4
4
|
|
|
5
|
-
declare const ConditionsEditor:
|
|
5
|
+
declare const ConditionsEditor: React__default.FC<ConditionsEditorProps>;
|
|
6
6
|
|
|
7
7
|
export { ConditionsEditor, ConditionsEditorProps };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import React__default from 'react';
|
|
2
2
|
import { FacetRule } from '@proveanything/smartlinks/dist/types/appObjects';
|
|
3
3
|
export { FacetRule, FacetRuleClause } from '@proveanything/smartlinks/dist/types/appObjects';
|
|
4
4
|
import { F as FacetOption } from '../../types-a2DdgZ2H.js';
|
|
@@ -37,6 +37,6 @@ interface FacetRuleEditorProps {
|
|
|
37
37
|
className?: string;
|
|
38
38
|
}
|
|
39
39
|
|
|
40
|
-
declare const FacetRuleEditor:
|
|
40
|
+
declare const FacetRuleEditor: React__default.FC<FacetRuleEditorProps>;
|
|
41
41
|
|
|
42
42
|
export { FacetOption, FacetRuleEditor, type FacetRuleEditorProps };
|