@univerjs/icons-vue 1.41.0 → 1.42.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/cjs/index.cjs +21 -0
- package/dist/cjs/pivot-chart-collapse-icon.cjs +60 -0
- package/dist/cjs/pivot-chart-expand-icon.cjs +60 -0
- package/dist/cjs/pivot-chart-icon.cjs +67 -0
- package/dist/esm/index.d.ts +3 -0
- package/dist/esm/index.js +4 -1
- package/dist/esm/pivot-chart-collapse-icon.d.ts +27 -0
- package/dist/esm/pivot-chart-collapse-icon.js +55 -0
- package/dist/esm/pivot-chart-expand-icon.d.ts +27 -0
- package/dist/esm/pivot-chart-expand-icon.js +55 -0
- package/dist/esm/pivot-chart-icon.d.ts +27 -0
- package/dist/esm/pivot-chart-icon.js +62 -0
- package/package.json +2 -2
package/dist/cjs/index.cjs
CHANGED
|
@@ -246,6 +246,9 @@ let ts_people_icon_js = require("./people-icon.cjs");
|
|
|
246
246
|
let ts_percent_icon_js = require("./percent-icon.cjs");
|
|
247
247
|
let ts_pie_chart_icon_js = require("./pie-chart-icon.cjs");
|
|
248
248
|
let ts_piping_icon_js = require("./piping-icon.cjs");
|
|
249
|
+
let ts_pivot_chart_collapse_icon_js = require("./pivot-chart-collapse-icon.cjs");
|
|
250
|
+
let ts_pivot_chart_expand_icon_js = require("./pivot-chart-expand-icon.cjs");
|
|
251
|
+
let ts_pivot_chart_icon_js = require("./pivot-chart-icon.cjs");
|
|
249
252
|
let ts_pivot_table_icon_js = require("./pivot-table-icon.cjs");
|
|
250
253
|
let ts_places_icon_js = require("./places-icon.cjs");
|
|
251
254
|
let ts_polynomial_icon_js = require("./polynomial-icon.cjs");
|
|
@@ -2462,6 +2465,24 @@ Object.defineProperty(exports, "PipingIcon", {
|
|
|
2462
2465
|
return ts_piping_icon_js.PipingIcon;
|
|
2463
2466
|
}
|
|
2464
2467
|
});
|
|
2468
|
+
Object.defineProperty(exports, "PivotChartCollapseIcon", {
|
|
2469
|
+
enumerable: true,
|
|
2470
|
+
get: function() {
|
|
2471
|
+
return ts_pivot_chart_collapse_icon_js.PivotChartCollapseIcon;
|
|
2472
|
+
}
|
|
2473
|
+
});
|
|
2474
|
+
Object.defineProperty(exports, "PivotChartExpandIcon", {
|
|
2475
|
+
enumerable: true,
|
|
2476
|
+
get: function() {
|
|
2477
|
+
return ts_pivot_chart_expand_icon_js.PivotChartExpandIcon;
|
|
2478
|
+
}
|
|
2479
|
+
});
|
|
2480
|
+
Object.defineProperty(exports, "PivotChartIcon", {
|
|
2481
|
+
enumerable: true,
|
|
2482
|
+
get: function() {
|
|
2483
|
+
return ts_pivot_chart_icon_js.PivotChartIcon;
|
|
2484
|
+
}
|
|
2485
|
+
});
|
|
2465
2486
|
Object.defineProperty(exports, "PivotTableIcon", {
|
|
2466
2487
|
enumerable: true,
|
|
2467
2488
|
get: function() {
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
Object.defineProperties(exports, {
|
|
2
|
+
__esModule: { value: true },
|
|
3
|
+
[Symbol.toStringTag]: { value: "Module" }
|
|
4
|
+
});
|
|
5
|
+
let vue = require("vue");
|
|
6
|
+
let ts_base_js = require("./base.cjs");
|
|
7
|
+
//#region ts/pivot-chart-collapse-icon.ts
|
|
8
|
+
const element = {
|
|
9
|
+
"tag": "svg",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
12
|
+
"fill": "none",
|
|
13
|
+
"stroke": "currentColor",
|
|
14
|
+
"stroke-linecap": "round",
|
|
15
|
+
"stroke-linejoin": "round",
|
|
16
|
+
"stroke-width": 1.2,
|
|
17
|
+
"viewBox": "0 0 16 16",
|
|
18
|
+
"width": "1em",
|
|
19
|
+
"height": "1em"
|
|
20
|
+
},
|
|
21
|
+
"children": [{
|
|
22
|
+
"tag": "rect",
|
|
23
|
+
"attrs": {
|
|
24
|
+
"width": 6,
|
|
25
|
+
"height": 6,
|
|
26
|
+
"x": 1,
|
|
27
|
+
"y": 1,
|
|
28
|
+
"rx": 1
|
|
29
|
+
}
|
|
30
|
+
}, {
|
|
31
|
+
"tag": "path",
|
|
32
|
+
"attrs": { "d": "M2.75 4H5.25M9.5 4H14.5M4 7V13H6.5M4 9H6.5M9 9H14.5M9 13H14.5" }
|
|
33
|
+
}]
|
|
34
|
+
};
|
|
35
|
+
const PivotChartCollapseIcon = (0, vue.defineComponent)({
|
|
36
|
+
name: "PivotChartCollapseIcon",
|
|
37
|
+
inheritAttrs: false,
|
|
38
|
+
props: {
|
|
39
|
+
preserveStrokeWidth: {
|
|
40
|
+
type: Boolean,
|
|
41
|
+
default: false
|
|
42
|
+
},
|
|
43
|
+
extend: {
|
|
44
|
+
type: Object,
|
|
45
|
+
default: void 0
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
setup(props, { attrs }) {
|
|
49
|
+
return () => (0, vue.h)(ts_base_js.IconBase, {
|
|
50
|
+
...attrs,
|
|
51
|
+
preserveStrokeWidth: props.preserveStrokeWidth,
|
|
52
|
+
extend: props.extend,
|
|
53
|
+
id: "pivot-chart-collapse-icon",
|
|
54
|
+
icon: element
|
|
55
|
+
});
|
|
56
|
+
}
|
|
57
|
+
});
|
|
58
|
+
//#endregion
|
|
59
|
+
exports.PivotChartCollapseIcon = PivotChartCollapseIcon;
|
|
60
|
+
exports.default = PivotChartCollapseIcon;
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
Object.defineProperties(exports, {
|
|
2
|
+
__esModule: { value: true },
|
|
3
|
+
[Symbol.toStringTag]: { value: "Module" }
|
|
4
|
+
});
|
|
5
|
+
let vue = require("vue");
|
|
6
|
+
let ts_base_js = require("./base.cjs");
|
|
7
|
+
//#region ts/pivot-chart-expand-icon.ts
|
|
8
|
+
const element = {
|
|
9
|
+
"tag": "svg",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
12
|
+
"fill": "none",
|
|
13
|
+
"stroke": "currentColor",
|
|
14
|
+
"stroke-linecap": "round",
|
|
15
|
+
"stroke-linejoin": "round",
|
|
16
|
+
"stroke-width": 1.2,
|
|
17
|
+
"viewBox": "0 0 16 16",
|
|
18
|
+
"width": "1em",
|
|
19
|
+
"height": "1em"
|
|
20
|
+
},
|
|
21
|
+
"children": [{
|
|
22
|
+
"tag": "rect",
|
|
23
|
+
"attrs": {
|
|
24
|
+
"width": 6,
|
|
25
|
+
"height": 6,
|
|
26
|
+
"x": 1,
|
|
27
|
+
"y": 1,
|
|
28
|
+
"rx": 1
|
|
29
|
+
}
|
|
30
|
+
}, {
|
|
31
|
+
"tag": "path",
|
|
32
|
+
"attrs": { "d": "M2.75 4H5.25M4 2.75V5.25M9.5 4H14.5M4 7V13H6.5M4 9H6.5M9 9H14.5M9 13H14.5" }
|
|
33
|
+
}]
|
|
34
|
+
};
|
|
35
|
+
const PivotChartExpandIcon = (0, vue.defineComponent)({
|
|
36
|
+
name: "PivotChartExpandIcon",
|
|
37
|
+
inheritAttrs: false,
|
|
38
|
+
props: {
|
|
39
|
+
preserveStrokeWidth: {
|
|
40
|
+
type: Boolean,
|
|
41
|
+
default: false
|
|
42
|
+
},
|
|
43
|
+
extend: {
|
|
44
|
+
type: Object,
|
|
45
|
+
default: void 0
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
setup(props, { attrs }) {
|
|
49
|
+
return () => (0, vue.h)(ts_base_js.IconBase, {
|
|
50
|
+
...attrs,
|
|
51
|
+
preserveStrokeWidth: props.preserveStrokeWidth,
|
|
52
|
+
extend: props.extend,
|
|
53
|
+
id: "pivot-chart-expand-icon",
|
|
54
|
+
icon: element
|
|
55
|
+
});
|
|
56
|
+
}
|
|
57
|
+
});
|
|
58
|
+
//#endregion
|
|
59
|
+
exports.PivotChartExpandIcon = PivotChartExpandIcon;
|
|
60
|
+
exports.default = PivotChartExpandIcon;
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
Object.defineProperties(exports, {
|
|
2
|
+
__esModule: { value: true },
|
|
3
|
+
[Symbol.toStringTag]: { value: "Module" }
|
|
4
|
+
});
|
|
5
|
+
let vue = require("vue");
|
|
6
|
+
let ts_base_js = require("./base.cjs");
|
|
7
|
+
//#region ts/pivot-chart-icon.ts
|
|
8
|
+
const element = {
|
|
9
|
+
"tag": "svg",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
12
|
+
"fill": "none",
|
|
13
|
+
"stroke": "currentColor",
|
|
14
|
+
"stroke-linecap": "round",
|
|
15
|
+
"stroke-linejoin": "round",
|
|
16
|
+
"stroke-width": 1.2,
|
|
17
|
+
"viewBox": "0 0 16 16",
|
|
18
|
+
"width": "1em",
|
|
19
|
+
"height": "1em"
|
|
20
|
+
},
|
|
21
|
+
"children": [
|
|
22
|
+
{
|
|
23
|
+
"tag": "rect",
|
|
24
|
+
"attrs": {
|
|
25
|
+
"width": 13.5,
|
|
26
|
+
"height": 13.5,
|
|
27
|
+
"x": 1.25,
|
|
28
|
+
"y": 1.25,
|
|
29
|
+
"rx": 1.5
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"tag": "path",
|
|
34
|
+
"attrs": { "d": "M1.25 4.75H14.75M4.75 1.25V14.75" }
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"tag": "path",
|
|
38
|
+
"attrs": { "d": "M7.25 12V9.5M9.75 12V7M12.25 12V8.5" }
|
|
39
|
+
}
|
|
40
|
+
]
|
|
41
|
+
};
|
|
42
|
+
const PivotChartIcon = (0, vue.defineComponent)({
|
|
43
|
+
name: "PivotChartIcon",
|
|
44
|
+
inheritAttrs: false,
|
|
45
|
+
props: {
|
|
46
|
+
preserveStrokeWidth: {
|
|
47
|
+
type: Boolean,
|
|
48
|
+
default: false
|
|
49
|
+
},
|
|
50
|
+
extend: {
|
|
51
|
+
type: Object,
|
|
52
|
+
default: void 0
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
setup(props, { attrs }) {
|
|
56
|
+
return () => (0, vue.h)(ts_base_js.IconBase, {
|
|
57
|
+
...attrs,
|
|
58
|
+
preserveStrokeWidth: props.preserveStrokeWidth,
|
|
59
|
+
extend: props.extend,
|
|
60
|
+
id: "pivot-chart-icon",
|
|
61
|
+
icon: element
|
|
62
|
+
});
|
|
63
|
+
}
|
|
64
|
+
});
|
|
65
|
+
//#endregion
|
|
66
|
+
exports.PivotChartIcon = PivotChartIcon;
|
|
67
|
+
exports.default = PivotChartIcon;
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -245,6 +245,9 @@ export { PeopleIcon } from './people-icon.js';
|
|
|
245
245
|
export { PercentIcon } from './percent-icon.js';
|
|
246
246
|
export { PieChartIcon } from './pie-chart-icon.js';
|
|
247
247
|
export { PipingIcon } from './piping-icon.js';
|
|
248
|
+
export { PivotChartCollapseIcon } from './pivot-chart-collapse-icon.js';
|
|
249
|
+
export { PivotChartExpandIcon } from './pivot-chart-expand-icon.js';
|
|
250
|
+
export { PivotChartIcon } from './pivot-chart-icon.js';
|
|
248
251
|
export { PivotTableIcon } from './pivot-table-icon.js';
|
|
249
252
|
export { PlacesIcon } from './places-icon.js';
|
|
250
253
|
export { PolynomialIcon } from './polynomial-icon.js';
|
package/dist/esm/index.js
CHANGED
|
@@ -245,6 +245,9 @@ import { PeopleIcon } from "./people-icon.js";
|
|
|
245
245
|
import { PercentIcon } from "./percent-icon.js";
|
|
246
246
|
import { PieChartIcon } from "./pie-chart-icon.js";
|
|
247
247
|
import { PipingIcon } from "./piping-icon.js";
|
|
248
|
+
import { PivotChartCollapseIcon } from "./pivot-chart-collapse-icon.js";
|
|
249
|
+
import { PivotChartExpandIcon } from "./pivot-chart-expand-icon.js";
|
|
250
|
+
import { PivotChartIcon } from "./pivot-chart-icon.js";
|
|
248
251
|
import { PivotTableIcon } from "./pivot-table-icon.js";
|
|
249
252
|
import { PlacesIcon } from "./places-icon.js";
|
|
250
253
|
import { PolynomialIcon } from "./polynomial-icon.js";
|
|
@@ -643,4 +646,4 @@ import { TodoListDoubleIcon } from "./todo-list-double-icon.js";
|
|
|
643
646
|
import { UpBorderDoubleIcon } from "./up-border-double-icon.js";
|
|
644
647
|
import { VerticalBorderDoubleIcon } from "./vertical-border-double-icon.js";
|
|
645
648
|
import { WarnDoubleIcon } from "./warn-double-icon.js";
|
|
646
|
-
export { AIcon, ActivityIcon, AddDigitsIcon, AddImageIcon, AddNoteIcon, AdditionAndSubtractionIcon, AdjustHeightDoubleIcon, AdjustWidthDoubleIcon, AiAssistantMultiIcon, AlignBottomIcon, AlignTextBothIcon, AlignTopIcon, AllBorderIcon, AmplifyIcon, AreaChartIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowTiltDownIcon, ArrowTiltUpIcon, ArrowUpIcon, AscendingIcon, AutoHeightDoubleIcon, AutoWidthDoubleIcon, AutofillDoubleIcon, AutowrapIcon, BackSlashDoubleIcon, BanIcon, BarChartIcon, BasesAppIcon, BasesMultiIcon, BoardsAppIcon, BoardsMultiIcon, BoldIcon, BottomIcon, BoxplotIcon, BrushIcon, BubbleIcon, CalendarIcon, CalloutIcon, CancelFreezeIcon, CancelMergeIcon, CandlestickChartIcon, CatalogueIcon, Cell0DoubleIcon, Cell100DoubleIcon, Cell25DoubleIcon, Cell50DoubleIcon, Cell75DoubleIcon, ChartIcon, CheckMarkIcon, CheckboxIcon, ChordChartIcon, ClassDiagramClassIcon, ClassDiagramDashedFilledArrowConnectorIcon, ClassDiagramDashedOpenArrowConnectorIcon, ClassDiagramFilledArrowConnectorIcon, ClassDiagramFilledDiamondConnectorIcon, ClassDiagramHollowDiamondConnectorIcon, ClassDiagramInterfaceIcon, ClearFormatDoubleIcon, ClockIcon, CloseIcon, CloudOutlineIcon, CodeBlockIcon, CodeIcon, ColorWheelMultiIcon, ColumnChartIcon, ColumnIcon, ColumnSparklineIcon, ComboChartIcon, CommentIcon, ComponentDiagramAssemblyConnectorIcon, ComponentDiagramComponentBoxIcon, ComponentDiagramComponentIcon, ComponentDiagramProvidedInterfaceIcon, ComponentDiagramRequiredInterfaceIcon, ConditionalColorIcon, ConditionsDoubleIcon, ConfigureTabIcon, ConnectionLineIcon, ConnectorBarCrowsFootMarkerIcon, ConnectorBarMarkerIcon, ConnectorCircleBarMarkerIcon, ConnectorCircleCrowsFootMarkerIcon, ConnectorCircleMarkerIcon, ConnectorCrossMarkerIcon, ConnectorCrowsFootMarkerIcon, ConnectorFilledArrowMarkerIcon, ConnectorFilledCircleMarkerIcon, ConnectorFilledDiamondMarkerIcon, ConnectorHollowDiamondMarkerIcon, ConnectorHollowTriangleMarkerIcon, ConnectorNoneMarkerIcon, ConnectorOpenArrowMarkerIcon, ConnectorRoundedElbowIcon, ConnectorSwapMarkersIcon, ConnectorXMarkerIcon, ConvertIcon, ConvertToNumberIcon, CopyDoubleIcon, CopyIcon, CorrectDoubleIcon, CreateCopyIcon, CropIcon, CrossHighlightingIcon, CrossIcon, CursorsIcon, CustomSortIcon, CutIcon, DataBarIcon, DataFlowCircleIcon, DataFlowDataStorage1Icon, DataFlowDataStorage2Icon, DataFlowDataStorage3Icon, DataFlowRoundedRectangleIcon, DataFlowRoundedSquareIcon, DataValidationIcon, DatabaseFunctionIcon, DatabaseIcon, DateFunctionIcon, DatePickerIcon, DeleteCellMoveDownDoubleIcon, DeleteCellShiftLeftDoubleIcon, DeleteCellShiftRightDoubleIcon, DeleteCellShiftUpDoubleIcon, DeleteColumnDoubleIcon, DeleteEmptyIcon, DeleteIcon, DeleteNoteIcon, DeleteRowDoubleIcon, DeleteTableDoubleIcon, DescendingIcon, DirectExportIcon, DissatisfiedDoubleIcon, DividerIcon, DocPasteOptionsIcon, DocSettingIcon, DocsAppIcon, DocsMultiIcon, DollarIcon, DongIcon, DownBorderDoubleIcon, DownIcon, DownloadIcon, DownloadImageIcon, DropdownListIcon, EngineeringFunctionIcon, EntityRelationshipEntityIcon, EntityRelationshipFieldTypeIcon, EntityRelationshipFullIcon, EntityRelationshipKeyFieldIcon, ErrorIcon, EuroIcon, ExclamationIcon, ExpandAscendingIcon, ExpandDescendingIcon, ExpandIcon, ExponentialIcon, ExportIcon, EyeIcon, EyelashIcon, FeatureSearchIcon, FilterIcon, FinancialFunctionIcon, FirstTabIcon, FlagIcon, FlipHorizontalIcon, FlipVerticalIcon, FolderIcon, FontColorDoubleIcon, FontSizeIncreaseIcon, FontSizeReduceIcon, FoodsIcon, FormulaAccentIcon, FormulaBracketIcon, FormulaFractionIcon, FormulaFunctionIcon, FormulaIntegralIcon, FormulaLargeOperatorIcon, FormulaLimitLogarithmIcon, FormulaMatrixIcon, FormulaOperatorIcon, FormulaRadicalIcon, FormulaScriptIcon, FountainPenIcon, FreezeColumnIcon, FreezeRowIcon, FreezeToSelectedIcon, FunctionIcon, FunnelIcon, FxIcon, GaugeChartIcon, GraphIcon, GridIcon, GridOutlineIcon, GripHorizontalIcon, GripVerticalIcon, GroupIcon, GroupSparklineIcon, GroupingDoubleIcon, GuffawDoubleIcon, H1Icon, H2Icon, H3Icon, H4Icon, H5Icon, H6Icon, HandIcon, HeaderFooterIcon, HeatmapIcon, HelpIcon, HideDoubleIcon, HideGridlinesIcon, HideNoteIcon, HistogramChartIcon, HistoryIcon, HomeIcon, HorizontalBorderDoubleIcon, HorizontalMergeIcon, HorizontallyIcon, ImpatientDoubleIcon, ImportIcon, IncreaseIcon, IndicateDoubleIcon, InfoIcon, InformationFunctionIcon, InnerBorderDoubleIcon, InsertCellDownDoubleIcon, InsertCellShiftRightDoubleIcon, InsertCommentDoubleIcon, InsertDoubleIcon, InsertIcon, InsertLinkDoubleIcon, InsertRowAboveDoubleIcon, InsertRowBelowDoubleIcon, ItalicIcon, KeyboardIcon, LeftBorderDoubleIcon, LeftDoubleDiagonalDoubleIcon, LeftInsertColumnDoubleIcon, LeftJustifyingIcon, LeftRotationFortyFiveDegreesIcon, LeftRotationNinetyDegreesIcon, LeftTridiagonalDoubleIcon, LineChartIcon, LineDashedNoneIcon, LineDoubleOpenArrowIcon, LineIndentDecreaseIcon, LineIndentIncreaseIcon, LineNoneIcon, LineOpenArrowIcon, LineSparklineIcon, LinearIcon, LinkIcon, LiveShareIcon, LoadingMultiIcon, LocateFixedIcon, LockIcon, LogarithmicIcon, LogicalFunctionIcon, LookupFunctionIcon, MathFunctionIcon, MenuIcon, MergeAllIcon, MermaidDiagramIcon, MindMapIcon, MistakeDoubleIcon, MoreDownIcon, MoreHorizontalIcon, MoreLeftIcon, MoreRightIcon, MoreUpIcon, MoreVerticalIcon, MoveDownIcon, MoveUpIcon, MovingAverageIcon, NatureIcon, NoBorderIcon, NoColorDoubleIcon, NoRotationIcon, NoninductiveDoubleIcon, NumberIcon, ObjectLayersIcon, ObjectsIcon, OffLineIcon, OnLineIcon, OneToOneIcon, OrderIcon, OuterBorderDoubleIcon, OverflowIcon, PaintBucketDoubleIcon, PaintIcon, ParagraphSettingIcon, PasteSpecialDoubleIcon, PdfAppIcon, PdfHighlightIcon, PdfMultiIcon, PenIcon, PeopleIcon, PercentIcon, PieChartIcon, PipingIcon, PivotTableIcon, PlacesIcon, PointColorDoubleIcon, PolynomialIcon, PowerLineIcon, PreciseSelectionIcon, PrintIcon, Progress0DoubleIcon, Progress100DoubleIcon, Progress25DoubleIcon, Progress50DoubleIcon, Progress75DoubleIcon, ProtectIcon, QuickAddIcon, QuoteIcon, RadarChartIcon, RandomIcon, RatingIcon, RecentIcon, RecordIcon, RedoIcon, ReduceDigitsIcon, ReduceDoubleIcon, ReduceIcon, RelationshipIcon, RenameIcon, ReplyToCommentIcon, ResourcesIcon, RestoreIcon, RhomboidIcon, RialIcon, RightBorderDoubleIcon, RightDoubleDiagonalDoubleIcon, RightInsertColumnDoubleIcon, RightJustifyingIcon, RightRotationFortyFiveDegreesIcon, RightRotationNinetyDegreesIcon, RmbIcon, RoubleIcon, RoundnessIcon, RowHeightExtraTallIcon, RowHeightMediumIcon, RowHeightShortIcon, RowHeightTallIcon, RowIcon, RulerIcon, RupiahIcon, SankeyIcon, ScatterChartIcon, SearchIcon, SectionSettingIcon, SelectRangeIcon, SequenceActivationBarIcon, SequenceActorLifelineIcon, SequenceAlternativeFragmentIcon, SequenceBoundaryLifelineIcon, SequenceCollectionLifelineIcon, SequenceControlLifelineIcon, SequenceDirectAccessStorageLifelineIcon, SequenceEntityLifelineIcon, SequenceFragmentIcon, SequenceMagneticDiskLifelineIcon, SequenceObjectLifelineIcon, ShapeAccentBorderCallout1Icon, ShapeAccentBorderCallout2Icon, ShapeAccentBorderCallout3Icon, ShapeAccentCallout1Icon, ShapeAccentCallout2Icon, ShapeAccentCallout3Icon, ShapeActionButtonBackPreviousIcon, ShapeActionButtonBeginningIcon, ShapeActionButtonBlankIcon, ShapeActionButtonDocumentIcon, ShapeActionButtonEndIcon, ShapeActionButtonForwardNextIcon, ShapeActionButtonHelpIcon, ShapeActionButtonHomeIcon, ShapeActionButtonInformationIcon, ShapeActionButtonMovieIcon, ShapeActionButtonReturnIcon, ShapeActionButtonSoundIcon, ShapeArcIcon, ShapeBackgroundColorDoubleIcon, ShapeBentArrowIcon, ShapeBentConnector3Arrow1Icon, ShapeBentConnector3Arrow2Icon, ShapeBentConnector3Icon, ShapeBentUpArrowIcon, ShapeBevelIcon, ShapeBlockArcIcon, ShapeBorderCallout1Icon, ShapeBorderCallout2Icon, ShapeBorderCallout3Icon, ShapeBracePairIcon, ShapeBracketPairIcon, ShapeCallout1Icon, ShapeCallout2Icon, ShapeCallout3Icon, ShapeCanIcon, ShapeChartPlusIcon, ShapeChartStarIcon, ShapeChartXIcon, ShapeChevronIcon, ShapeChordIcon, ShapeCircularArrowIcon, ShapeCloudCalloutIcon, ShapeCloudIcon, ShapeCornerIcon, ShapeCornerTabsIcon, ShapeCubeIcon, ShapeCurvedConnector3Arrow1Icon, ShapeCurvedConnector3Arrow2Icon, ShapeCurvedConnector3Icon, ShapeCurvedDownArrowIcon, ShapeCurvedLeftArrowIcon, ShapeCurvedRightArrowIcon, ShapeCurvedUpArrowIcon, ShapeDecagonIcon, ShapeDiagStripeIcon, ShapeDiamondIcon, ShapeDodecagonIcon, ShapeDonutIcon, ShapeDoubleWaveIcon, ShapeDownArrowCalloutIcon, ShapeDownArrowIcon, ShapeEllipseIcon, ShapeEllipseRibbon2Icon, ShapeEllipseRibbonIcon, ShapeFlowChartAlternateProcessIcon, ShapeFlowChartCollateIcon, ShapeFlowChartConnectorIcon, ShapeFlowChartDecisionIcon, ShapeFlowChartDelayIcon, ShapeFlowChartDisplayIcon, ShapeFlowChartDocumentIcon, ShapeFlowChartExtractIcon, ShapeFlowChartInputOutputIcon, ShapeFlowChartInternalStorageIcon, ShapeFlowChartMagneticDiskIcon, ShapeFlowChartMagneticDrumIcon, ShapeFlowChartMagneticTapeIcon, ShapeFlowChartManualInputIcon, ShapeFlowChartManualOperationIcon, ShapeFlowChartMergeIcon, ShapeFlowChartMultidocumentIcon, ShapeFlowChartOfflineStorageIcon, ShapeFlowChartOffpageConnectorIcon, ShapeFlowChartOnlineStorageIcon, ShapeFlowChartOrIcon, ShapeFlowChartPredefinedProcessIcon, ShapeFlowChartPreparationIcon, ShapeFlowChartProcessIcon, ShapeFlowChartPunchedCardIcon, ShapeFlowChartPunchedTapeIcon, ShapeFlowChartSortIcon, ShapeFlowChartSummingJunctionIcon, ShapeFlowChartTerminatorIcon, ShapeFolderCornerIcon, ShapeFormatSettingIcon, ShapeFrameIcon, ShapeFunnelIcon, ShapeGear6Icon, ShapeGear9Icon, ShapeHalfFrameIcon, ShapeHeartIcon, ShapeHeptagonIcon, ShapeHexagonIcon, ShapeHomePlateIcon, ShapeHorizontalScrollIcon, ShapeIcon, ShapeIrregularSeal1Icon, ShapeIrregularSeal2Icon, ShapeLeftArrowCalloutIcon, ShapeLeftArrowIcon, ShapeLeftBraceIcon, ShapeLeftBracketIcon, ShapeLeftCircularArrowIcon, ShapeLeftRightArrowCalloutIcon, ShapeLeftRightArrowIcon, ShapeLeftRightCircularArrowIcon, ShapeLeftRightRibbonIcon, ShapeLeftRightUpArrowIcon, ShapeLeftUpArrowIcon, ShapeLightningBoltIcon, ShapeLineIcon, ShapeLineInvIcon, ShapeMathDivideIcon, ShapeMathEqualIcon, ShapeMathMinusIcon, ShapeMathMultiplyIcon, ShapeMathNotEqualIcon, ShapeMathPlusIcon, ShapeMoonIcon, ShapeNoSmokingIcon, ShapeNonIsoscelesTrapezoidIcon, ShapeNotchedRightArrowIcon, ShapeOctagonIcon, ShapeParallelogramIcon, ShapePentagonIcon, ShapePieIcon, ShapePieWedgeIcon, ShapePlaqueIcon, ShapePlaqueTabsIcon, ShapePlusIcon, ShapeQuadArrowCalloutIcon, ShapeQuadArrowIcon, ShapeRectIcon, ShapeRectTextboxHorizontalIcon, ShapeRectTextboxVerticalIcon, ShapeRibbon2Icon, ShapeRibbonIcon, ShapeRightArrowCalloutIcon, ShapeRightArrowIcon, ShapeRightBraceIcon, ShapeRightBracketIcon, ShapeRound1RectIcon, ShapeRound2DiagRectIcon, ShapeRound2SameRectIcon, ShapeRoundRectIcon, ShapeRtTriangleIcon, ShapeSmileyFaceIcon, ShapeSnip1RectIcon, ShapeSnip2DiagRectIcon, ShapeSnip2SameRectIcon, ShapeSnipRoundRectIcon, ShapeSquareTabsIcon, ShapeStar10Icon, ShapeStar12Icon, ShapeStar16Icon, ShapeStar24Icon, ShapeStar32Icon, ShapeStar4Icon, ShapeStar5Icon, ShapeStar6Icon, ShapeStar7Icon, ShapeStar8Icon, ShapeStraightConnector1Icon, ShapeStraightConnector2Icon, ShapeStripedRightArrowIcon, ShapeStrokeColorDoubleIcon, ShapeSunIcon, ShapeSwooshArrowIcon, ShapeTeardropIcon, ShapeTrapezoidIcon, ShapeTriangleIcon, ShapeUpArrowCalloutIcon, ShapeUpArrowIcon, ShapeUpDownArrowCalloutIcon, ShapeUpDownArrowIcon, ShapeUturnArrowIcon, ShapeVerticalScrollIcon, ShapeWaveIcon, ShapeWedgeEllipseCalloutIcon, ShapeWedgeRectCalloutIcon, ShapeWedgeRoundRectCalloutIcon, ShareIcon, ShareRangeIcon, SheetIcon, SheetsAppIcon, SheetsMultiIcon, ShortcutIcon, ShowDimensionsIcon, ShowToolbarIcon, ShrinkIcon, ShrinkToFitIcon, Signal0DoubleIcon, Signal100DoubleIcon, Signal25DoubleIcon, Signal50DoubleIcon, Signal75DoubleIcon, SlashDoubleIcon, SlidesAppIcon, SlidesMultiIcon, SlideshowPlayIcon, SlideshowThemeIcon, SmartArtIcon, SmileDoubleIcon, SmileIcon, StarEmptyDoubleIcon, StarFullDoubleIcon, StarIncompleteDoubleIcon, StatisticalFunctionIcon, StatusDiagramFinalStateIcon, StatusDiagramInitialStateIcon, StatusDiagramStateBarIcon, StickyNoteIcon, StrikethroughIcon, StrokeSize1Icon, StrokeSize2Icon, StrokeSize3Icon, StrokeSize4Icon, StrokeSize5Icon, SubscriptIcon, SubtitleTypeIcon, SuccessIcon, SuccessOutlineIcon, SunburstChartIcon, SuperscriptIcon, SymbolsIcon, TableBorderStyleDashedIcon, TableBorderStyleDottedIcon, TableBorderStyleIcon, TableBorderStyleSolidIcon, TableBorderWidthIcon, TableIcon, TextColorSwatchDoubleIcon, TextFunctionIcon, TextIcon, TextTypeIcon, TextWrapShapeIcon, TitleTypeIcon, TodoListDoubleIcon, TopmostIcon, TransitionsIcon, TreemapChartIcon, TriangleIcon, TruncationIcon, TypographyIcon, UnderlineIcon, UndoIcon, UngroupIcon, UngroupSparklineIcon, UniverCliIcon, UniverSdkMultiIcon, UnlinkIcon, UnlockIcon, UnorderIcon, UpBorderDoubleIcon, UpIcon, VerticalBorderDoubleIcon, VerticalCenterIcon, VerticalIntegrationIcon, VerticalTextIcon, WarnDoubleIcon, WarningIcon, WaterfallChartIcon, WinlossSparklineIcon, WonIcon, WriteIcon, ZlotyIcon, ZoomInIcon, ZoomOutIcon };
|
|
649
|
+
export { AIcon, ActivityIcon, AddDigitsIcon, AddImageIcon, AddNoteIcon, AdditionAndSubtractionIcon, AdjustHeightDoubleIcon, AdjustWidthDoubleIcon, AiAssistantMultiIcon, AlignBottomIcon, AlignTextBothIcon, AlignTopIcon, AllBorderIcon, AmplifyIcon, AreaChartIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowTiltDownIcon, ArrowTiltUpIcon, ArrowUpIcon, AscendingIcon, AutoHeightDoubleIcon, AutoWidthDoubleIcon, AutofillDoubleIcon, AutowrapIcon, BackSlashDoubleIcon, BanIcon, BarChartIcon, BasesAppIcon, BasesMultiIcon, BoardsAppIcon, BoardsMultiIcon, BoldIcon, BottomIcon, BoxplotIcon, BrushIcon, BubbleIcon, CalendarIcon, CalloutIcon, CancelFreezeIcon, CancelMergeIcon, CandlestickChartIcon, CatalogueIcon, Cell0DoubleIcon, Cell100DoubleIcon, Cell25DoubleIcon, Cell50DoubleIcon, Cell75DoubleIcon, ChartIcon, CheckMarkIcon, CheckboxIcon, ChordChartIcon, ClassDiagramClassIcon, ClassDiagramDashedFilledArrowConnectorIcon, ClassDiagramDashedOpenArrowConnectorIcon, ClassDiagramFilledArrowConnectorIcon, ClassDiagramFilledDiamondConnectorIcon, ClassDiagramHollowDiamondConnectorIcon, ClassDiagramInterfaceIcon, ClearFormatDoubleIcon, ClockIcon, CloseIcon, CloudOutlineIcon, CodeBlockIcon, CodeIcon, ColorWheelMultiIcon, ColumnChartIcon, ColumnIcon, ColumnSparklineIcon, ComboChartIcon, CommentIcon, ComponentDiagramAssemblyConnectorIcon, ComponentDiagramComponentBoxIcon, ComponentDiagramComponentIcon, ComponentDiagramProvidedInterfaceIcon, ComponentDiagramRequiredInterfaceIcon, ConditionalColorIcon, ConditionsDoubleIcon, ConfigureTabIcon, ConnectionLineIcon, ConnectorBarCrowsFootMarkerIcon, ConnectorBarMarkerIcon, ConnectorCircleBarMarkerIcon, ConnectorCircleCrowsFootMarkerIcon, ConnectorCircleMarkerIcon, ConnectorCrossMarkerIcon, ConnectorCrowsFootMarkerIcon, ConnectorFilledArrowMarkerIcon, ConnectorFilledCircleMarkerIcon, ConnectorFilledDiamondMarkerIcon, ConnectorHollowDiamondMarkerIcon, ConnectorHollowTriangleMarkerIcon, ConnectorNoneMarkerIcon, ConnectorOpenArrowMarkerIcon, ConnectorRoundedElbowIcon, ConnectorSwapMarkersIcon, ConnectorXMarkerIcon, ConvertIcon, ConvertToNumberIcon, CopyDoubleIcon, CopyIcon, CorrectDoubleIcon, CreateCopyIcon, CropIcon, CrossHighlightingIcon, CrossIcon, CursorsIcon, CustomSortIcon, CutIcon, DataBarIcon, DataFlowCircleIcon, DataFlowDataStorage1Icon, DataFlowDataStorage2Icon, DataFlowDataStorage3Icon, DataFlowRoundedRectangleIcon, DataFlowRoundedSquareIcon, DataValidationIcon, DatabaseFunctionIcon, DatabaseIcon, DateFunctionIcon, DatePickerIcon, DeleteCellMoveDownDoubleIcon, DeleteCellShiftLeftDoubleIcon, DeleteCellShiftRightDoubleIcon, DeleteCellShiftUpDoubleIcon, DeleteColumnDoubleIcon, DeleteEmptyIcon, DeleteIcon, DeleteNoteIcon, DeleteRowDoubleIcon, DeleteTableDoubleIcon, DescendingIcon, DirectExportIcon, DissatisfiedDoubleIcon, DividerIcon, DocPasteOptionsIcon, DocSettingIcon, DocsAppIcon, DocsMultiIcon, DollarIcon, DongIcon, DownBorderDoubleIcon, DownIcon, DownloadIcon, DownloadImageIcon, DropdownListIcon, EngineeringFunctionIcon, EntityRelationshipEntityIcon, EntityRelationshipFieldTypeIcon, EntityRelationshipFullIcon, EntityRelationshipKeyFieldIcon, ErrorIcon, EuroIcon, ExclamationIcon, ExpandAscendingIcon, ExpandDescendingIcon, ExpandIcon, ExponentialIcon, ExportIcon, EyeIcon, EyelashIcon, FeatureSearchIcon, FilterIcon, FinancialFunctionIcon, FirstTabIcon, FlagIcon, FlipHorizontalIcon, FlipVerticalIcon, FolderIcon, FontColorDoubleIcon, FontSizeIncreaseIcon, FontSizeReduceIcon, FoodsIcon, FormulaAccentIcon, FormulaBracketIcon, FormulaFractionIcon, FormulaFunctionIcon, FormulaIntegralIcon, FormulaLargeOperatorIcon, FormulaLimitLogarithmIcon, FormulaMatrixIcon, FormulaOperatorIcon, FormulaRadicalIcon, FormulaScriptIcon, FountainPenIcon, FreezeColumnIcon, FreezeRowIcon, FreezeToSelectedIcon, FunctionIcon, FunnelIcon, FxIcon, GaugeChartIcon, GraphIcon, GridIcon, GridOutlineIcon, GripHorizontalIcon, GripVerticalIcon, GroupIcon, GroupSparklineIcon, GroupingDoubleIcon, GuffawDoubleIcon, H1Icon, H2Icon, H3Icon, H4Icon, H5Icon, H6Icon, HandIcon, HeaderFooterIcon, HeatmapIcon, HelpIcon, HideDoubleIcon, HideGridlinesIcon, HideNoteIcon, HistogramChartIcon, HistoryIcon, HomeIcon, HorizontalBorderDoubleIcon, HorizontalMergeIcon, HorizontallyIcon, ImpatientDoubleIcon, ImportIcon, IncreaseIcon, IndicateDoubleIcon, InfoIcon, InformationFunctionIcon, InnerBorderDoubleIcon, InsertCellDownDoubleIcon, InsertCellShiftRightDoubleIcon, InsertCommentDoubleIcon, InsertDoubleIcon, InsertIcon, InsertLinkDoubleIcon, InsertRowAboveDoubleIcon, InsertRowBelowDoubleIcon, ItalicIcon, KeyboardIcon, LeftBorderDoubleIcon, LeftDoubleDiagonalDoubleIcon, LeftInsertColumnDoubleIcon, LeftJustifyingIcon, LeftRotationFortyFiveDegreesIcon, LeftRotationNinetyDegreesIcon, LeftTridiagonalDoubleIcon, LineChartIcon, LineDashedNoneIcon, LineDoubleOpenArrowIcon, LineIndentDecreaseIcon, LineIndentIncreaseIcon, LineNoneIcon, LineOpenArrowIcon, LineSparklineIcon, LinearIcon, LinkIcon, LiveShareIcon, LoadingMultiIcon, LocateFixedIcon, LockIcon, LogarithmicIcon, LogicalFunctionIcon, LookupFunctionIcon, MathFunctionIcon, MenuIcon, MergeAllIcon, MermaidDiagramIcon, MindMapIcon, MistakeDoubleIcon, MoreDownIcon, MoreHorizontalIcon, MoreLeftIcon, MoreRightIcon, MoreUpIcon, MoreVerticalIcon, MoveDownIcon, MoveUpIcon, MovingAverageIcon, NatureIcon, NoBorderIcon, NoColorDoubleIcon, NoRotationIcon, NoninductiveDoubleIcon, NumberIcon, ObjectLayersIcon, ObjectsIcon, OffLineIcon, OnLineIcon, OneToOneIcon, OrderIcon, OuterBorderDoubleIcon, OverflowIcon, PaintBucketDoubleIcon, PaintIcon, ParagraphSettingIcon, PasteSpecialDoubleIcon, PdfAppIcon, PdfHighlightIcon, PdfMultiIcon, PenIcon, PeopleIcon, PercentIcon, PieChartIcon, PipingIcon, PivotChartCollapseIcon, PivotChartExpandIcon, PivotChartIcon, PivotTableIcon, PlacesIcon, PointColorDoubleIcon, PolynomialIcon, PowerLineIcon, PreciseSelectionIcon, PrintIcon, Progress0DoubleIcon, Progress100DoubleIcon, Progress25DoubleIcon, Progress50DoubleIcon, Progress75DoubleIcon, ProtectIcon, QuickAddIcon, QuoteIcon, RadarChartIcon, RandomIcon, RatingIcon, RecentIcon, RecordIcon, RedoIcon, ReduceDigitsIcon, ReduceDoubleIcon, ReduceIcon, RelationshipIcon, RenameIcon, ReplyToCommentIcon, ResourcesIcon, RestoreIcon, RhomboidIcon, RialIcon, RightBorderDoubleIcon, RightDoubleDiagonalDoubleIcon, RightInsertColumnDoubleIcon, RightJustifyingIcon, RightRotationFortyFiveDegreesIcon, RightRotationNinetyDegreesIcon, RmbIcon, RoubleIcon, RoundnessIcon, RowHeightExtraTallIcon, RowHeightMediumIcon, RowHeightShortIcon, RowHeightTallIcon, RowIcon, RulerIcon, RupiahIcon, SankeyIcon, ScatterChartIcon, SearchIcon, SectionSettingIcon, SelectRangeIcon, SequenceActivationBarIcon, SequenceActorLifelineIcon, SequenceAlternativeFragmentIcon, SequenceBoundaryLifelineIcon, SequenceCollectionLifelineIcon, SequenceControlLifelineIcon, SequenceDirectAccessStorageLifelineIcon, SequenceEntityLifelineIcon, SequenceFragmentIcon, SequenceMagneticDiskLifelineIcon, SequenceObjectLifelineIcon, ShapeAccentBorderCallout1Icon, ShapeAccentBorderCallout2Icon, ShapeAccentBorderCallout3Icon, ShapeAccentCallout1Icon, ShapeAccentCallout2Icon, ShapeAccentCallout3Icon, ShapeActionButtonBackPreviousIcon, ShapeActionButtonBeginningIcon, ShapeActionButtonBlankIcon, ShapeActionButtonDocumentIcon, ShapeActionButtonEndIcon, ShapeActionButtonForwardNextIcon, ShapeActionButtonHelpIcon, ShapeActionButtonHomeIcon, ShapeActionButtonInformationIcon, ShapeActionButtonMovieIcon, ShapeActionButtonReturnIcon, ShapeActionButtonSoundIcon, ShapeArcIcon, ShapeBackgroundColorDoubleIcon, ShapeBentArrowIcon, ShapeBentConnector3Arrow1Icon, ShapeBentConnector3Arrow2Icon, ShapeBentConnector3Icon, ShapeBentUpArrowIcon, ShapeBevelIcon, ShapeBlockArcIcon, ShapeBorderCallout1Icon, ShapeBorderCallout2Icon, ShapeBorderCallout3Icon, ShapeBracePairIcon, ShapeBracketPairIcon, ShapeCallout1Icon, ShapeCallout2Icon, ShapeCallout3Icon, ShapeCanIcon, ShapeChartPlusIcon, ShapeChartStarIcon, ShapeChartXIcon, ShapeChevronIcon, ShapeChordIcon, ShapeCircularArrowIcon, ShapeCloudCalloutIcon, ShapeCloudIcon, ShapeCornerIcon, ShapeCornerTabsIcon, ShapeCubeIcon, ShapeCurvedConnector3Arrow1Icon, ShapeCurvedConnector3Arrow2Icon, ShapeCurvedConnector3Icon, ShapeCurvedDownArrowIcon, ShapeCurvedLeftArrowIcon, ShapeCurvedRightArrowIcon, ShapeCurvedUpArrowIcon, ShapeDecagonIcon, ShapeDiagStripeIcon, ShapeDiamondIcon, ShapeDodecagonIcon, ShapeDonutIcon, ShapeDoubleWaveIcon, ShapeDownArrowCalloutIcon, ShapeDownArrowIcon, ShapeEllipseIcon, ShapeEllipseRibbon2Icon, ShapeEllipseRibbonIcon, ShapeFlowChartAlternateProcessIcon, ShapeFlowChartCollateIcon, ShapeFlowChartConnectorIcon, ShapeFlowChartDecisionIcon, ShapeFlowChartDelayIcon, ShapeFlowChartDisplayIcon, ShapeFlowChartDocumentIcon, ShapeFlowChartExtractIcon, ShapeFlowChartInputOutputIcon, ShapeFlowChartInternalStorageIcon, ShapeFlowChartMagneticDiskIcon, ShapeFlowChartMagneticDrumIcon, ShapeFlowChartMagneticTapeIcon, ShapeFlowChartManualInputIcon, ShapeFlowChartManualOperationIcon, ShapeFlowChartMergeIcon, ShapeFlowChartMultidocumentIcon, ShapeFlowChartOfflineStorageIcon, ShapeFlowChartOffpageConnectorIcon, ShapeFlowChartOnlineStorageIcon, ShapeFlowChartOrIcon, ShapeFlowChartPredefinedProcessIcon, ShapeFlowChartPreparationIcon, ShapeFlowChartProcessIcon, ShapeFlowChartPunchedCardIcon, ShapeFlowChartPunchedTapeIcon, ShapeFlowChartSortIcon, ShapeFlowChartSummingJunctionIcon, ShapeFlowChartTerminatorIcon, ShapeFolderCornerIcon, ShapeFormatSettingIcon, ShapeFrameIcon, ShapeFunnelIcon, ShapeGear6Icon, ShapeGear9Icon, ShapeHalfFrameIcon, ShapeHeartIcon, ShapeHeptagonIcon, ShapeHexagonIcon, ShapeHomePlateIcon, ShapeHorizontalScrollIcon, ShapeIcon, ShapeIrregularSeal1Icon, ShapeIrregularSeal2Icon, ShapeLeftArrowCalloutIcon, ShapeLeftArrowIcon, ShapeLeftBraceIcon, ShapeLeftBracketIcon, ShapeLeftCircularArrowIcon, ShapeLeftRightArrowCalloutIcon, ShapeLeftRightArrowIcon, ShapeLeftRightCircularArrowIcon, ShapeLeftRightRibbonIcon, ShapeLeftRightUpArrowIcon, ShapeLeftUpArrowIcon, ShapeLightningBoltIcon, ShapeLineIcon, ShapeLineInvIcon, ShapeMathDivideIcon, ShapeMathEqualIcon, ShapeMathMinusIcon, ShapeMathMultiplyIcon, ShapeMathNotEqualIcon, ShapeMathPlusIcon, ShapeMoonIcon, ShapeNoSmokingIcon, ShapeNonIsoscelesTrapezoidIcon, ShapeNotchedRightArrowIcon, ShapeOctagonIcon, ShapeParallelogramIcon, ShapePentagonIcon, ShapePieIcon, ShapePieWedgeIcon, ShapePlaqueIcon, ShapePlaqueTabsIcon, ShapePlusIcon, ShapeQuadArrowCalloutIcon, ShapeQuadArrowIcon, ShapeRectIcon, ShapeRectTextboxHorizontalIcon, ShapeRectTextboxVerticalIcon, ShapeRibbon2Icon, ShapeRibbonIcon, ShapeRightArrowCalloutIcon, ShapeRightArrowIcon, ShapeRightBraceIcon, ShapeRightBracketIcon, ShapeRound1RectIcon, ShapeRound2DiagRectIcon, ShapeRound2SameRectIcon, ShapeRoundRectIcon, ShapeRtTriangleIcon, ShapeSmileyFaceIcon, ShapeSnip1RectIcon, ShapeSnip2DiagRectIcon, ShapeSnip2SameRectIcon, ShapeSnipRoundRectIcon, ShapeSquareTabsIcon, ShapeStar10Icon, ShapeStar12Icon, ShapeStar16Icon, ShapeStar24Icon, ShapeStar32Icon, ShapeStar4Icon, ShapeStar5Icon, ShapeStar6Icon, ShapeStar7Icon, ShapeStar8Icon, ShapeStraightConnector1Icon, ShapeStraightConnector2Icon, ShapeStripedRightArrowIcon, ShapeStrokeColorDoubleIcon, ShapeSunIcon, ShapeSwooshArrowIcon, ShapeTeardropIcon, ShapeTrapezoidIcon, ShapeTriangleIcon, ShapeUpArrowCalloutIcon, ShapeUpArrowIcon, ShapeUpDownArrowCalloutIcon, ShapeUpDownArrowIcon, ShapeUturnArrowIcon, ShapeVerticalScrollIcon, ShapeWaveIcon, ShapeWedgeEllipseCalloutIcon, ShapeWedgeRectCalloutIcon, ShapeWedgeRoundRectCalloutIcon, ShareIcon, ShareRangeIcon, SheetIcon, SheetsAppIcon, SheetsMultiIcon, ShortcutIcon, ShowDimensionsIcon, ShowToolbarIcon, ShrinkIcon, ShrinkToFitIcon, Signal0DoubleIcon, Signal100DoubleIcon, Signal25DoubleIcon, Signal50DoubleIcon, Signal75DoubleIcon, SlashDoubleIcon, SlidesAppIcon, SlidesMultiIcon, SlideshowPlayIcon, SlideshowThemeIcon, SmartArtIcon, SmileDoubleIcon, SmileIcon, StarEmptyDoubleIcon, StarFullDoubleIcon, StarIncompleteDoubleIcon, StatisticalFunctionIcon, StatusDiagramFinalStateIcon, StatusDiagramInitialStateIcon, StatusDiagramStateBarIcon, StickyNoteIcon, StrikethroughIcon, StrokeSize1Icon, StrokeSize2Icon, StrokeSize3Icon, StrokeSize4Icon, StrokeSize5Icon, SubscriptIcon, SubtitleTypeIcon, SuccessIcon, SuccessOutlineIcon, SunburstChartIcon, SuperscriptIcon, SymbolsIcon, TableBorderStyleDashedIcon, TableBorderStyleDottedIcon, TableBorderStyleIcon, TableBorderStyleSolidIcon, TableBorderWidthIcon, TableIcon, TextColorSwatchDoubleIcon, TextFunctionIcon, TextIcon, TextTypeIcon, TextWrapShapeIcon, TitleTypeIcon, TodoListDoubleIcon, TopmostIcon, TransitionsIcon, TreemapChartIcon, TriangleIcon, TruncationIcon, TypographyIcon, UnderlineIcon, UndoIcon, UngroupIcon, UngroupSparklineIcon, UniverCliIcon, UniverSdkMultiIcon, UnlinkIcon, UnlockIcon, UnorderIcon, UpBorderDoubleIcon, UpIcon, VerticalBorderDoubleIcon, VerticalCenterIcon, VerticalIntegrationIcon, VerticalTextIcon, WarnDoubleIcon, WarningIcon, WaterfallChartIcon, WinlossSparklineIcon, WonIcon, WriteIcon, ZlotyIcon, ZoomInIcon, ZoomOutIcon };
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { PropType } from 'vue';
|
|
2
|
+
import type { IExtendProps } from './base.js';
|
|
3
|
+
export declare const PivotChartCollapseIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
+
preserveStrokeWidth: {
|
|
5
|
+
type: BooleanConstructor;
|
|
6
|
+
default: boolean;
|
|
7
|
+
};
|
|
8
|
+
extend: {
|
|
9
|
+
type: PropType<IExtendProps>;
|
|
10
|
+
default: undefined;
|
|
11
|
+
};
|
|
12
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
13
|
+
[key: string]: any;
|
|
14
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
+
preserveStrokeWidth: {
|
|
16
|
+
type: BooleanConstructor;
|
|
17
|
+
default: boolean;
|
|
18
|
+
};
|
|
19
|
+
extend: {
|
|
20
|
+
type: PropType<IExtendProps>;
|
|
21
|
+
default: undefined;
|
|
22
|
+
};
|
|
23
|
+
}>> & Readonly<{}>, {
|
|
24
|
+
preserveStrokeWidth: boolean;
|
|
25
|
+
extend: IExtendProps;
|
|
26
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
27
|
+
export default PivotChartCollapseIcon;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/pivot-chart-collapse-icon.ts
|
|
4
|
+
const element = {
|
|
5
|
+
"tag": "svg",
|
|
6
|
+
"attrs": {
|
|
7
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"stroke": "currentColor",
|
|
10
|
+
"stroke-linecap": "round",
|
|
11
|
+
"stroke-linejoin": "round",
|
|
12
|
+
"stroke-width": 1.2,
|
|
13
|
+
"viewBox": "0 0 16 16",
|
|
14
|
+
"width": "1em",
|
|
15
|
+
"height": "1em"
|
|
16
|
+
},
|
|
17
|
+
"children": [{
|
|
18
|
+
"tag": "rect",
|
|
19
|
+
"attrs": {
|
|
20
|
+
"width": 6,
|
|
21
|
+
"height": 6,
|
|
22
|
+
"x": 1,
|
|
23
|
+
"y": 1,
|
|
24
|
+
"rx": 1
|
|
25
|
+
}
|
|
26
|
+
}, {
|
|
27
|
+
"tag": "path",
|
|
28
|
+
"attrs": { "d": "M2.75 4H5.25M9.5 4H14.5M4 7V13H6.5M4 9H6.5M9 9H14.5M9 13H14.5" }
|
|
29
|
+
}]
|
|
30
|
+
};
|
|
31
|
+
const PivotChartCollapseIcon = defineComponent({
|
|
32
|
+
name: "PivotChartCollapseIcon",
|
|
33
|
+
inheritAttrs: false,
|
|
34
|
+
props: {
|
|
35
|
+
preserveStrokeWidth: {
|
|
36
|
+
type: Boolean,
|
|
37
|
+
default: false
|
|
38
|
+
},
|
|
39
|
+
extend: {
|
|
40
|
+
type: Object,
|
|
41
|
+
default: void 0
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
setup(props, { attrs }) {
|
|
45
|
+
return () => h(IconBase, {
|
|
46
|
+
...attrs,
|
|
47
|
+
preserveStrokeWidth: props.preserveStrokeWidth,
|
|
48
|
+
extend: props.extend,
|
|
49
|
+
id: "pivot-chart-collapse-icon",
|
|
50
|
+
icon: element
|
|
51
|
+
});
|
|
52
|
+
}
|
|
53
|
+
});
|
|
54
|
+
//#endregion
|
|
55
|
+
export { PivotChartCollapseIcon, PivotChartCollapseIcon as default };
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { PropType } from 'vue';
|
|
2
|
+
import type { IExtendProps } from './base.js';
|
|
3
|
+
export declare const PivotChartExpandIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
+
preserveStrokeWidth: {
|
|
5
|
+
type: BooleanConstructor;
|
|
6
|
+
default: boolean;
|
|
7
|
+
};
|
|
8
|
+
extend: {
|
|
9
|
+
type: PropType<IExtendProps>;
|
|
10
|
+
default: undefined;
|
|
11
|
+
};
|
|
12
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
13
|
+
[key: string]: any;
|
|
14
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
+
preserveStrokeWidth: {
|
|
16
|
+
type: BooleanConstructor;
|
|
17
|
+
default: boolean;
|
|
18
|
+
};
|
|
19
|
+
extend: {
|
|
20
|
+
type: PropType<IExtendProps>;
|
|
21
|
+
default: undefined;
|
|
22
|
+
};
|
|
23
|
+
}>> & Readonly<{}>, {
|
|
24
|
+
preserveStrokeWidth: boolean;
|
|
25
|
+
extend: IExtendProps;
|
|
26
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
27
|
+
export default PivotChartExpandIcon;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/pivot-chart-expand-icon.ts
|
|
4
|
+
const element = {
|
|
5
|
+
"tag": "svg",
|
|
6
|
+
"attrs": {
|
|
7
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"stroke": "currentColor",
|
|
10
|
+
"stroke-linecap": "round",
|
|
11
|
+
"stroke-linejoin": "round",
|
|
12
|
+
"stroke-width": 1.2,
|
|
13
|
+
"viewBox": "0 0 16 16",
|
|
14
|
+
"width": "1em",
|
|
15
|
+
"height": "1em"
|
|
16
|
+
},
|
|
17
|
+
"children": [{
|
|
18
|
+
"tag": "rect",
|
|
19
|
+
"attrs": {
|
|
20
|
+
"width": 6,
|
|
21
|
+
"height": 6,
|
|
22
|
+
"x": 1,
|
|
23
|
+
"y": 1,
|
|
24
|
+
"rx": 1
|
|
25
|
+
}
|
|
26
|
+
}, {
|
|
27
|
+
"tag": "path",
|
|
28
|
+
"attrs": { "d": "M2.75 4H5.25M4 2.75V5.25M9.5 4H14.5M4 7V13H6.5M4 9H6.5M9 9H14.5M9 13H14.5" }
|
|
29
|
+
}]
|
|
30
|
+
};
|
|
31
|
+
const PivotChartExpandIcon = defineComponent({
|
|
32
|
+
name: "PivotChartExpandIcon",
|
|
33
|
+
inheritAttrs: false,
|
|
34
|
+
props: {
|
|
35
|
+
preserveStrokeWidth: {
|
|
36
|
+
type: Boolean,
|
|
37
|
+
default: false
|
|
38
|
+
},
|
|
39
|
+
extend: {
|
|
40
|
+
type: Object,
|
|
41
|
+
default: void 0
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
setup(props, { attrs }) {
|
|
45
|
+
return () => h(IconBase, {
|
|
46
|
+
...attrs,
|
|
47
|
+
preserveStrokeWidth: props.preserveStrokeWidth,
|
|
48
|
+
extend: props.extend,
|
|
49
|
+
id: "pivot-chart-expand-icon",
|
|
50
|
+
icon: element
|
|
51
|
+
});
|
|
52
|
+
}
|
|
53
|
+
});
|
|
54
|
+
//#endregion
|
|
55
|
+
export { PivotChartExpandIcon, PivotChartExpandIcon as default };
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { PropType } from 'vue';
|
|
2
|
+
import type { IExtendProps } from './base.js';
|
|
3
|
+
export declare const PivotChartIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
+
preserveStrokeWidth: {
|
|
5
|
+
type: BooleanConstructor;
|
|
6
|
+
default: boolean;
|
|
7
|
+
};
|
|
8
|
+
extend: {
|
|
9
|
+
type: PropType<IExtendProps>;
|
|
10
|
+
default: undefined;
|
|
11
|
+
};
|
|
12
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
13
|
+
[key: string]: any;
|
|
14
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
+
preserveStrokeWidth: {
|
|
16
|
+
type: BooleanConstructor;
|
|
17
|
+
default: boolean;
|
|
18
|
+
};
|
|
19
|
+
extend: {
|
|
20
|
+
type: PropType<IExtendProps>;
|
|
21
|
+
default: undefined;
|
|
22
|
+
};
|
|
23
|
+
}>> & Readonly<{}>, {
|
|
24
|
+
preserveStrokeWidth: boolean;
|
|
25
|
+
extend: IExtendProps;
|
|
26
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
27
|
+
export default PivotChartIcon;
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/pivot-chart-icon.ts
|
|
4
|
+
const element = {
|
|
5
|
+
"tag": "svg",
|
|
6
|
+
"attrs": {
|
|
7
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"stroke": "currentColor",
|
|
10
|
+
"stroke-linecap": "round",
|
|
11
|
+
"stroke-linejoin": "round",
|
|
12
|
+
"stroke-width": 1.2,
|
|
13
|
+
"viewBox": "0 0 16 16",
|
|
14
|
+
"width": "1em",
|
|
15
|
+
"height": "1em"
|
|
16
|
+
},
|
|
17
|
+
"children": [
|
|
18
|
+
{
|
|
19
|
+
"tag": "rect",
|
|
20
|
+
"attrs": {
|
|
21
|
+
"width": 13.5,
|
|
22
|
+
"height": 13.5,
|
|
23
|
+
"x": 1.25,
|
|
24
|
+
"y": 1.25,
|
|
25
|
+
"rx": 1.5
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"tag": "path",
|
|
30
|
+
"attrs": { "d": "M1.25 4.75H14.75M4.75 1.25V14.75" }
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"tag": "path",
|
|
34
|
+
"attrs": { "d": "M7.25 12V9.5M9.75 12V7M12.25 12V8.5" }
|
|
35
|
+
}
|
|
36
|
+
]
|
|
37
|
+
};
|
|
38
|
+
const PivotChartIcon = defineComponent({
|
|
39
|
+
name: "PivotChartIcon",
|
|
40
|
+
inheritAttrs: false,
|
|
41
|
+
props: {
|
|
42
|
+
preserveStrokeWidth: {
|
|
43
|
+
type: Boolean,
|
|
44
|
+
default: false
|
|
45
|
+
},
|
|
46
|
+
extend: {
|
|
47
|
+
type: Object,
|
|
48
|
+
default: void 0
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
setup(props, { attrs }) {
|
|
52
|
+
return () => h(IconBase, {
|
|
53
|
+
...attrs,
|
|
54
|
+
preserveStrokeWidth: props.preserveStrokeWidth,
|
|
55
|
+
extend: props.extend,
|
|
56
|
+
id: "pivot-chart-icon",
|
|
57
|
+
icon: element
|
|
58
|
+
});
|
|
59
|
+
}
|
|
60
|
+
});
|
|
61
|
+
//#endregion
|
|
62
|
+
export { PivotChartIcon, PivotChartIcon as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@univerjs/icons-vue",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.42.0",
|
|
4
4
|
"description": "Vue icons for Univer.",
|
|
5
5
|
"author": "DreamNum Co., Ltd. <developer@univer.ai>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/node": "^26.6.2",
|
|
44
44
|
"@types/svg-parser": "^2.0.6",
|
|
45
|
-
"@univerjs/icons-svg": "1.
|
|
45
|
+
"@univerjs/icons-svg": "1.42.0",
|
|
46
46
|
"rolldown": "1.2.9",
|
|
47
47
|
"svg-parser": "^2.1.0",
|
|
48
48
|
"svgo": "^4.1.0",
|