@activecollab/components 1.0.41 → 1.0.42
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/components/Icons/collection/InsertLink.js +31 -0
- package/dist/cjs/components/Icons/collection/InsertLink.js.map +1 -0
- package/dist/cjs/components/Icons/collection/Note.js +31 -0
- package/dist/cjs/components/Icons/collection/Note.js.map +1 -0
- package/dist/cjs/components/Icons/collection/Settings.js +31 -0
- package/dist/cjs/components/Icons/collection/Settings.js.map +1 -0
- package/dist/cjs/components/Icons/collection/index.js +24 -0
- package/dist/cjs/components/Icons/collection/index.js.map +1 -1
- package/dist/esm/components/Icons/collection/InsertLink.d.ts +4 -0
- package/dist/esm/components/Icons/collection/InsertLink.d.ts.map +1 -0
- package/dist/esm/components/Icons/collection/InsertLink.js +18 -0
- package/dist/esm/components/Icons/collection/InsertLink.js.map +1 -0
- package/dist/esm/components/Icons/collection/Note.d.ts +4 -0
- package/dist/esm/components/Icons/collection/Note.d.ts.map +1 -0
- package/dist/esm/components/Icons/collection/Note.js +18 -0
- package/dist/esm/components/Icons/collection/Note.js.map +1 -0
- package/dist/esm/components/Icons/collection/Settings.d.ts +4 -0
- package/dist/esm/components/Icons/collection/Settings.d.ts.map +1 -0
- package/dist/esm/components/Icons/collection/Settings.js +18 -0
- package/dist/esm/components/Icons/collection/Settings.js.map +1 -0
- package/dist/esm/components/Icons/collection/index.d.ts +3 -0
- package/dist/esm/components/Icons/collection/index.d.ts.map +1 -1
- package/dist/esm/components/Icons/collection/index.js +3 -0
- package/dist/esm/components/Icons/collection/index.js.map +1 -1
- package/dist/index.js +51 -0
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6602,6 +6602,22 @@
|
|
|
6602
6602
|
InfoIcon.displayName = "InfoIcon";
|
|
6603
6603
|
var InfoIcon$1 = InfoIcon;
|
|
6604
6604
|
|
|
6605
|
+
var InsertLinkIcon = /*#__PURE__*/React__default["default"].forwardRef(function (props, svgRef) {
|
|
6606
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6607
|
+
width: 24,
|
|
6608
|
+
height: 24,
|
|
6609
|
+
viewBox: "0 0 24 24",
|
|
6610
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6611
|
+
fill: "var(--color-theme-600)",
|
|
6612
|
+
ref: svgRef
|
|
6613
|
+
}, props), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6614
|
+
d: "M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1ZM8 13h8v-2H8v2Zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.71-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5Z",
|
|
6615
|
+
fillRule: "evenodd"
|
|
6616
|
+
}));
|
|
6617
|
+
});
|
|
6618
|
+
InsertLinkIcon.displayName = "InsertLinkIcon";
|
|
6619
|
+
var InsertLinkIcon$1 = InsertLinkIcon;
|
|
6620
|
+
|
|
6605
6621
|
var IntegrationsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (props, svgRef) {
|
|
6606
6622
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6607
6623
|
width: 24,
|
|
@@ -6825,6 +6841,22 @@
|
|
|
6825
6841
|
NoteAddIcon.displayName = "NoteAddIcon";
|
|
6826
6842
|
var NoteAddIcon$1 = NoteAddIcon;
|
|
6827
6843
|
|
|
6844
|
+
var NoteIcon = /*#__PURE__*/React__default["default"].forwardRef(function (props, svgRef) {
|
|
6845
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6846
|
+
width: 24,
|
|
6847
|
+
height: 24,
|
|
6848
|
+
viewBox: "0 0 24 24",
|
|
6849
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6850
|
+
fill: "var(--color-theme-600)",
|
|
6851
|
+
ref: svgRef
|
|
6852
|
+
}, props), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6853
|
+
d: "M19 5v9h-5v5H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h10l6-6V5c0-1.1-.9-2-2-2Zm-7 10H7v-2h5v2Zm5-4H7V7h10v2Z",
|
|
6854
|
+
fillRule: "evenodd"
|
|
6855
|
+
}));
|
|
6856
|
+
});
|
|
6857
|
+
NoteIcon.displayName = "NoteIcon";
|
|
6858
|
+
var NoteIcon$1 = NoteIcon;
|
|
6859
|
+
|
|
6828
6860
|
var NotificationBellIcon = /*#__PURE__*/React__default["default"].forwardRef(function (props, svgRef) {
|
|
6829
6861
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6830
6862
|
width: 24,
|
|
@@ -7231,6 +7263,22 @@
|
|
|
7231
7263
|
SendFilledIcon.displayName = "SendFilledIcon";
|
|
7232
7264
|
var SendFilledIcon$1 = SendFilledIcon;
|
|
7233
7265
|
|
|
7266
|
+
var SettingsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (props, svgRef) {
|
|
7267
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7268
|
+
width: 24,
|
|
7269
|
+
height: 24,
|
|
7270
|
+
viewBox: "0 0 24 24",
|
|
7271
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7272
|
+
fill: "var(--color-theme-600)",
|
|
7273
|
+
ref: svgRef
|
|
7274
|
+
}, props), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
7275
|
+
d: "M4.14 16H3a1 1 0 0 0 0 2h1.14c.45 1.72 2 3 3.86 3 1.86 0 3.41-1.28 3.86-3H21a1 1 0 0 0 0-2h-9.14c-.45-1.72-2-3-3.86-3-1.86 0-3.41 1.28-3.86 3ZM6 17c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2ZM16 3c-1.86 0-3.41 1.28-3.86 3H3a1 1 0 1 0 0 2h9.14c.45 1.72 2 3 3.86 3 1.86 0 3.41-1.28 3.86-3H21a1 1 0 0 0 0-2h-1.14c-.45-1.72-2-3-3.86-3Zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2Z",
|
|
7276
|
+
fillRule: "evenodd"
|
|
7277
|
+
}));
|
|
7278
|
+
});
|
|
7279
|
+
SettingsIcon.displayName = "SettingsIcon";
|
|
7280
|
+
var SettingsIcon$1 = SettingsIcon;
|
|
7281
|
+
|
|
7234
7282
|
var SortGeneralIcon = /*#__PURE__*/React__default["default"].forwardRef(function (props, svgRef) {
|
|
7235
7283
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7236
7284
|
width: 24,
|
|
@@ -10156,6 +10204,7 @@
|
|
|
10156
10204
|
exports.InfoIcon = InfoIcon$1;
|
|
10157
10205
|
exports.InfoSmallIcon = InfoSmallIcon$1;
|
|
10158
10206
|
exports.Input = Input;
|
|
10207
|
+
exports.InsertLinkIcon = InsertLinkIcon$1;
|
|
10159
10208
|
exports.IntegrationsIcon = IntegrationsIcon$1;
|
|
10160
10209
|
exports.InvoicesIcon = InvoicesIcon$1;
|
|
10161
10210
|
exports.Item = Item;
|
|
@@ -10189,6 +10238,7 @@
|
|
|
10189
10238
|
exports.Nav = Nav;
|
|
10190
10239
|
exports.NavBarElement = NavBarElement;
|
|
10191
10240
|
exports.NoteAddIcon = NoteAddIcon$1;
|
|
10241
|
+
exports.NoteIcon = NoteIcon$1;
|
|
10192
10242
|
exports.NotificationBellIcon = NotificationBellIcon$1;
|
|
10193
10243
|
exports.OpenExpandedIcon = OpenExpandedIcon$1;
|
|
10194
10244
|
exports.Option = Option;
|
|
@@ -10233,6 +10283,7 @@
|
|
|
10233
10283
|
exports.SelectDate = SelectDate;
|
|
10234
10284
|
exports.SendBlankIcon = SendBlankIcon$1;
|
|
10235
10285
|
exports.SendFilledIcon = SendFilledIcon$1;
|
|
10286
|
+
exports.SettingsIcon = SettingsIcon$1;
|
|
10236
10287
|
exports.Sheet = Sheet;
|
|
10237
10288
|
exports.Signifier = Signifier;
|
|
10238
10289
|
exports.Slide = Slide;
|