ListGroups.spec.js.snap 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`ListGroups.vue renders correctly 1`] = `
  3. <div>
  4. <crow-stub
  5. gutters="true"
  6. tag="div"
  7. >
  8. <ccol-stub
  9. md="6"
  10. tag="div"
  11. >
  12. <ccard-stub>
  13. <ccardheader-stub>
  14. <cicon-stub
  15. name="cil-justify-center"
  16. />
  17. <strong>
  18. List group
  19. </strong>
  20. <small>
  21. disabled items
  22. </small>
  23. </ccardheader-stub>
  24. <ccardbody-stub>
  25. <clistgroup-stub
  26. tag="ul"
  27. >
  28. <clistgroupitem-stub
  29. activeclass="router-link-active"
  30. disabled="true"
  31. event="click"
  32. exactactiveclass="router-link-exact-active"
  33. routertag="a"
  34. tag="li"
  35. target="_self"
  36. >
  37. Cras justo odio
  38. </clistgroupitem-stub>
  39. <clistgroupitem-stub
  40. activeclass="router-link-active"
  41. event="click"
  42. exactactiveclass="router-link-exact-active"
  43. routertag="a"
  44. tag="li"
  45. target="_self"
  46. >
  47. Dapibus ac facilisis in
  48. </clistgroupitem-stub>
  49. <clistgroupitem-stub
  50. activeclass="router-link-active"
  51. event="click"
  52. exactactiveclass="router-link-exact-active"
  53. routertag="a"
  54. tag="li"
  55. target="_self"
  56. >
  57. Morbi leo risus
  58. </clistgroupitem-stub>
  59. <clistgroupitemdivider-stub />
  60. <clistgroupitem-stub
  61. activeclass="router-link-active"
  62. disabled="true"
  63. event="click"
  64. exactactiveclass="router-link-exact-active"
  65. routertag="a"
  66. tag="li"
  67. target="_self"
  68. >
  69. Porta ac consectetur ac
  70. </clistgroupitem-stub>
  71. <clistgroupitem-stub
  72. activeclass="router-link-active"
  73. event="click"
  74. exactactiveclass="router-link-exact-active"
  75. routertag="a"
  76. tag="li"
  77. target="_self"
  78. >
  79. Vestibulum at eros
  80. </clistgroupitem-stub>
  81. </clistgroup-stub>
  82. </ccardbody-stub>
  83. </ccard-stub>
  84. </ccol-stub>
  85. <ccol-stub
  86. md="6"
  87. tag="div"
  88. >
  89. <ccard-stub>
  90. <ccardheader-stub>
  91. <cicon-stub
  92. name="cil-justify-center"
  93. />
  94. <strong>
  95. List group
  96. </strong>
  97. <small>
  98. actionable items
  99. </small>
  100. </ccardheader-stub>
  101. <ccardbody-stub>
  102. <clistgroup-stub
  103. tag="ul"
  104. >
  105. <clistgroupitem-stub
  106. activeclass="router-link-active"
  107. event="click"
  108. exactactiveclass="router-link-exact-active"
  109. href="#some-link"
  110. routertag="a"
  111. tag="li"
  112. target="_self"
  113. >
  114. Awesome link
  115. </clistgroupitem-stub>
  116. <clistgroupitem-stub
  117. active="true"
  118. activeclass="router-link-active"
  119. event="click"
  120. exactactiveclass="router-link-exact-active"
  121. href="#"
  122. routertag="a"
  123. tag="li"
  124. target="_self"
  125. >
  126. Link with active state
  127. </clistgroupitem-stub>
  128. <clistgroupitem-stub
  129. activeclass="router-link-active"
  130. event="click"
  131. exactactiveclass="router-link-exact-active"
  132. href="#"
  133. routertag="a"
  134. tag="li"
  135. target="_self"
  136. >
  137. Action links are easy
  138. </clistgroupitem-stub>
  139. <clistgroupitem-stub
  140. activeclass="router-link-active"
  141. disabled="true"
  142. event="click"
  143. exactactiveclass="router-link-exact-active"
  144. href="#foobar"
  145. routertag="a"
  146. tag="li"
  147. target="_self"
  148. >
  149. Disabled link
  150. </clistgroupitem-stub>
  151. </clistgroup-stub>
  152. </ccardbody-stub>
  153. </ccard-stub>
  154. </ccol-stub>
  155. </crow-stub>
  156. <crow-stub
  157. gutters="true"
  158. tag="div"
  159. >
  160. <ccol-stub
  161. md="6"
  162. tag="div"
  163. >
  164. <ccard-stub>
  165. <ccardheader-stub>
  166. <cicon-stub
  167. name="cil-justify-center"
  168. />
  169. <strong>
  170. List group
  171. </strong>
  172. <small>
  173. buttons
  174. </small>
  175. </ccardheader-stub>
  176. <ccardbody-stub>
  177. <clistgroup-stub
  178. tag="ul"
  179. >
  180. <clistgroupitem-stub
  181. activeclass="router-link-active"
  182. event="click"
  183. exactactiveclass="router-link-exact-active"
  184. routertag="a"
  185. tag="button"
  186. target="_self"
  187. >
  188. Button item
  189. </clistgroupitem-stub>
  190. <clistgroupitem-stub
  191. activeclass="router-link-active"
  192. event="click"
  193. exactactiveclass="router-link-exact-active"
  194. routertag="a"
  195. tag="button"
  196. target="_self"
  197. >
  198. I am a button
  199. </clistgroupitem-stub>
  200. <clistgroupitem-stub
  201. activeclass="router-link-active"
  202. disabled="true"
  203. event="click"
  204. exactactiveclass="router-link-exact-active"
  205. routertag="a"
  206. tag="button"
  207. target="_self"
  208. >
  209. Disabled button
  210. </clistgroupitem-stub>
  211. <clistgroupitem-stub
  212. activeclass="router-link-active"
  213. event="click"
  214. exactactiveclass="router-link-exact-active"
  215. routertag="a"
  216. tag="button"
  217. target="_self"
  218. >
  219. This is a button too
  220. </clistgroupitem-stub>
  221. </clistgroup-stub>
  222. </ccardbody-stub>
  223. </ccard-stub>
  224. </ccol-stub>
  225. <ccol-stub
  226. md="6"
  227. tag="div"
  228. >
  229. <ccard-stub>
  230. <ccardheader-stub>
  231. <cicon-stub
  232. name="cil-justify-center"
  233. />
  234. <strong>
  235. List group
  236. </strong>
  237. <small>
  238. with badges
  239. </small>
  240. </ccardheader-stub>
  241. <ccardbody-stub>
  242. <clistgroup-stub
  243. tag="ul"
  244. >
  245. <clistgroupitem-stub
  246. activeclass="router-link-active"
  247. class="d-flex justify-content-between align-items-center"
  248. event="click"
  249. exactactiveclass="router-link-exact-active"
  250. routertag="a"
  251. tag="li"
  252. target="_self"
  253. >
  254. Cras justo odio
  255. <cbadge-stub
  256. activeclass="router-link-active"
  257. color="primary"
  258. event="click"
  259. exactactiveclass="router-link-exact-active"
  260. routertag="a"
  261. shape="pill"
  262. tag="span"
  263. target="_self"
  264. >
  265. 14
  266. </cbadge-stub>
  267. </clistgroupitem-stub>
  268. <clistgroupitem-stub
  269. activeclass="router-link-active"
  270. class="d-flex justify-content-between align-items-center"
  271. event="click"
  272. exactactiveclass="router-link-exact-active"
  273. routertag="a"
  274. tag="li"
  275. target="_self"
  276. >
  277. Dapibus ac facilisis in
  278. <cbadge-stub
  279. activeclass="router-link-active"
  280. color="primary"
  281. event="click"
  282. exactactiveclass="router-link-exact-active"
  283. routertag="a"
  284. shape="pill"
  285. tag="span"
  286. target="_self"
  287. >
  288. 2
  289. </cbadge-stub>
  290. </clistgroupitem-stub>
  291. <clistgroupitem-stub
  292. activeclass="router-link-active"
  293. class="d-flex justify-content-between align-items-center"
  294. event="click"
  295. exactactiveclass="router-link-exact-active"
  296. routertag="a"
  297. tag="li"
  298. target="_self"
  299. >
  300. Morbi leo risus
  301. <cbadge-stub
  302. activeclass="router-link-active"
  303. color="primary"
  304. event="click"
  305. exactactiveclass="router-link-exact-active"
  306. routertag="a"
  307. shape="pill"
  308. tag="span"
  309. target="_self"
  310. >
  311. 1
  312. </cbadge-stub>
  313. </clistgroupitem-stub>
  314. </clistgroup-stub>
  315. </ccardbody-stub>
  316. </ccard-stub>
  317. </ccol-stub>
  318. </crow-stub>
  319. <crow-stub
  320. gutters="true"
  321. tag="div"
  322. >
  323. <ccol-stub
  324. md="6"
  325. tag="div"
  326. >
  327. <ccard-stub>
  328. <ccardheader-stub>
  329. <cicon-stub
  330. name="cil-justify-center"
  331. />
  332. <strong>
  333. List group
  334. </strong>
  335. <small>
  336. colors
  337. </small>
  338. </ccardheader-stub>
  339. <ccardbody-stub>
  340. <clistgroup-stub
  341. tag="ul"
  342. >
  343. <clistgroupitem-stub
  344. activeclass="router-link-active"
  345. event="click"
  346. exactactiveclass="router-link-exact-active"
  347. routertag="a"
  348. tag="li"
  349. target="_self"
  350. >
  351. This is a default list group item
  352. </clistgroupitem-stub>
  353. <clistgroupitem-stub
  354. activeclass="router-link-active"
  355. color="primary"
  356. event="click"
  357. exactactiveclass="router-link-exact-active"
  358. routertag="a"
  359. tag="li"
  360. target="_self"
  361. >
  362. This is a primary list group item
  363. </clistgroupitem-stub>
  364. <clistgroupitem-stub
  365. activeclass="router-link-active"
  366. color="secondary"
  367. event="click"
  368. exactactiveclass="router-link-exact-active"
  369. routertag="a"
  370. tag="li"
  371. target="_self"
  372. >
  373. This is a secondary list group item
  374. </clistgroupitem-stub>
  375. <clistgroupitem-stub
  376. activeclass="router-link-active"
  377. color="success"
  378. event="click"
  379. exactactiveclass="router-link-exact-active"
  380. routertag="a"
  381. tag="li"
  382. target="_self"
  383. >
  384. This is a success list group item
  385. </clistgroupitem-stub>
  386. <clistgroupitem-stub
  387. activeclass="router-link-active"
  388. color="danger"
  389. event="click"
  390. exactactiveclass="router-link-exact-active"
  391. routertag="a"
  392. tag="li"
  393. target="_self"
  394. >
  395. This is a danger list group item
  396. </clistgroupitem-stub>
  397. <clistgroupitem-stub
  398. activeclass="router-link-active"
  399. color="warning"
  400. event="click"
  401. exactactiveclass="router-link-exact-active"
  402. routertag="a"
  403. tag="li"
  404. target="_self"
  405. >
  406. This is a warning list group item
  407. </clistgroupitem-stub>
  408. <clistgroupitem-stub
  409. activeclass="router-link-active"
  410. color="info"
  411. event="click"
  412. exactactiveclass="router-link-exact-active"
  413. routertag="a"
  414. tag="li"
  415. target="_self"
  416. >
  417. This is a info list group item
  418. </clistgroupitem-stub>
  419. <clistgroupitem-stub
  420. activeclass="router-link-active"
  421. color="light"
  422. event="click"
  423. exactactiveclass="router-link-exact-active"
  424. routertag="a"
  425. tag="li"
  426. target="_self"
  427. >
  428. This is a light list group item
  429. </clistgroupitem-stub>
  430. <clistgroupitem-stub
  431. activeclass="router-link-active"
  432. color="dark"
  433. event="click"
  434. exactactiveclass="router-link-exact-active"
  435. routertag="a"
  436. tag="li"
  437. target="_self"
  438. >
  439. This is a dark list group item
  440. </clistgroupitem-stub>
  441. </clistgroup-stub>
  442. </ccardbody-stub>
  443. </ccard-stub>
  444. </ccol-stub>
  445. <ccol-stub
  446. md="6"
  447. tag="div"
  448. >
  449. <ccard-stub>
  450. <ccardheader-stub>
  451. <cicon-stub
  452. name="cil-justify-center"
  453. />
  454. <strong>
  455. List group
  456. </strong>
  457. <small>
  458. colors active accent
  459. </small>
  460. </ccardheader-stub>
  461. <ccardbody-stub>
  462. <clistgroup-stub
  463. accent="true"
  464. tag="ul"
  465. >
  466. <clistgroupitem-stub
  467. accent="light"
  468. activeclass="router-link-active"
  469. event="click"
  470. exactactiveclass="router-link-exact-active"
  471. href="#"
  472. routertag="a"
  473. tag="li"
  474. target="_self"
  475. >
  476. This is a default list group item
  477. </clistgroupitem-stub>
  478. <clistgroupitem-stub
  479. accent="primary"
  480. activeclass="router-link-active"
  481. color="primary"
  482. event="click"
  483. exactactiveclass="router-link-exact-active"
  484. href="#"
  485. routertag="a"
  486. tag="li"
  487. target="_self"
  488. >
  489. This is a primary list group item
  490. </clistgroupitem-stub>
  491. <clistgroupitem-stub
  492. accent="secondary"
  493. activeclass="router-link-active"
  494. color="secondary"
  495. event="click"
  496. exactactiveclass="router-link-exact-active"
  497. href="#"
  498. routertag="a"
  499. tag="li"
  500. target="_self"
  501. >
  502. This is a secondary list group item
  503. </clistgroupitem-stub>
  504. <clistgroupitem-stub
  505. accent="success"
  506. activeclass="router-link-active"
  507. color="success"
  508. event="click"
  509. exactactiveclass="router-link-exact-active"
  510. href="#"
  511. routertag="a"
  512. tag="li"
  513. target="_self"
  514. >
  515. This is a success list group item
  516. </clistgroupitem-stub>
  517. <clistgroupitem-stub
  518. accent="danger"
  519. activeclass="router-link-active"
  520. color="danger"
  521. event="click"
  522. exactactiveclass="router-link-exact-active"
  523. href="#"
  524. routertag="a"
  525. tag="li"
  526. target="_self"
  527. >
  528. This is a danger list group item
  529. </clistgroupitem-stub>
  530. <clistgroupitem-stub
  531. accent="warning"
  532. activeclass="router-link-active"
  533. color="warning"
  534. event="click"
  535. exactactiveclass="router-link-exact-active"
  536. href="#"
  537. routertag="a"
  538. tag="li"
  539. target="_self"
  540. >
  541. This is a warning list group item
  542. </clistgroupitem-stub>
  543. <clistgroupitem-stub
  544. accent="info"
  545. activeclass="router-link-active"
  546. color="info"
  547. event="click"
  548. exactactiveclass="router-link-exact-active"
  549. href="#"
  550. routertag="a"
  551. tag="li"
  552. target="_self"
  553. >
  554. This is a info list group item
  555. </clistgroupitem-stub>
  556. <clistgroupitem-stub
  557. accent="light"
  558. activeclass="router-link-active"
  559. color="light"
  560. event="click"
  561. exactactiveclass="router-link-exact-active"
  562. href="#"
  563. routertag="a"
  564. tag="li"
  565. target="_self"
  566. >
  567. This is a light list group item
  568. </clistgroupitem-stub>
  569. <clistgroupitem-stub
  570. accent="dark"
  571. activeclass="router-link-active"
  572. color="dark"
  573. event="click"
  574. exactactiveclass="router-link-exact-active"
  575. href="#"
  576. routertag="a"
  577. tag="li"
  578. target="_self"
  579. >
  580. This is a dark list group item
  581. </clistgroupitem-stub>
  582. </clistgroup-stub>
  583. </ccardbody-stub>
  584. </ccard-stub>
  585. </ccol-stub>
  586. </crow-stub>
  587. <crow-stub
  588. gutters="true"
  589. tag="div"
  590. >
  591. <ccol-stub
  592. col="12"
  593. tag="div"
  594. >
  595. <ccard-stub>
  596. <ccardheader-stub>
  597. <cicon-stub
  598. name="cil-justify-center"
  599. />
  600. <strong>
  601. List group
  602. </strong>
  603. <small>
  604. inside cards
  605. </small>
  606. </ccardheader-stub>
  607. <ccardbody-stub>
  608. <ccardgroup-stub
  609. deck="true"
  610. tag="div"
  611. >
  612. <ccard-stub>
  613. <ccardheader-stub>
  614. <b>
  615. Card with list group
  616. </b>
  617. </ccardheader-stub>
  618. <ccardbody-stub>
  619. <clistgroup-stub
  620. tag="ul"
  621. >
  622. <clistgroupitem-stub
  623. activeclass="router-link-active"
  624. event="click"
  625. exactactiveclass="router-link-exact-active"
  626. href="#"
  627. routertag="a"
  628. tag="li"
  629. target="_self"
  630. >
  631. Cras justo odio
  632. </clistgroupitem-stub>
  633. <clistgroupitem-stub
  634. activeclass="router-link-active"
  635. event="click"
  636. exactactiveclass="router-link-exact-active"
  637. href="#"
  638. routertag="a"
  639. tag="li"
  640. target="_self"
  641. >
  642. Dapibus ac facilisis in
  643. </clistgroupitem-stub>
  644. <clistgroupitem-stub
  645. activeclass="router-link-active"
  646. event="click"
  647. exactactiveclass="router-link-exact-active"
  648. href="#"
  649. routertag="a"
  650. tag="li"
  651. target="_self"
  652. >
  653. Vestibulum at eros
  654. </clistgroupitem-stub>
  655. </clistgroup-stub>
  656. <ccardtext-stub
  657. class="mt-2"
  658. tag="p"
  659. >
  660. Quis magna Lorem anim amet ipsum do mollit sit cillum voluptate ex
  661. nulla tempor. Laborum consequat non elit enim exercitation cillum aliqua
  662. consequat id aliqua. Esse ex consectetur mollit voluptate est in duis laboris
  663. ad sit ipsum anim Lorem.
  664. </ccardtext-stub>
  665. </ccardbody-stub>
  666. </ccard-stub>
  667. <ccard-stub>
  668. <ccardheader-stub>
  669. <b>
  670. Card with flush list group
  671. </b>
  672. </ccardheader-stub>
  673. <clistgroup-stub
  674. flush="true"
  675. tag="ul"
  676. >
  677. <clistgroupitem-stub
  678. activeclass="router-link-active"
  679. event="click"
  680. exactactiveclass="router-link-exact-active"
  681. href="#"
  682. routertag="a"
  683. tag="li"
  684. target="_self"
  685. >
  686. Cras justo odio
  687. </clistgroupitem-stub>
  688. <clistgroupitem-stub
  689. activeclass="router-link-active"
  690. event="click"
  691. exactactiveclass="router-link-exact-active"
  692. href="#"
  693. routertag="a"
  694. tag="li"
  695. target="_self"
  696. >
  697. Dapibus ac facilisis in
  698. </clistgroupitem-stub>
  699. <clistgroupitem-stub
  700. activeclass="router-link-active"
  701. event="click"
  702. exactactiveclass="router-link-exact-active"
  703. href="#"
  704. routertag="a"
  705. tag="li"
  706. target="_self"
  707. >
  708. Vestibulum at eros
  709. </clistgroupitem-stub>
  710. </clistgroup-stub>
  711. <ccardbody-stub>
  712. Quis magna Lorem anim amet ipsum do mollit sit cillum voluptate ex
  713. nulla tempor. Laborum consequat non elit enim exercitation cillum aliqua
  714. consequat id aliqua. Esse ex consectetur mollit voluptate est in duis laboris
  715. ad sit ipsum anim Lorem.
  716. </ccardbody-stub>
  717. </ccard-stub>
  718. </ccardgroup-stub>
  719. </ccardbody-stub>
  720. </ccard-stub>
  721. </ccol-stub>
  722. </crow-stub>
  723. <crow-stub
  724. gutters="true"
  725. tag="div"
  726. >
  727. <ccol-stub
  728. md="6"
  729. tag="div"
  730. >
  731. <ccard-stub>
  732. <ccardheader-stub>
  733. <cicon-stub
  734. name="cil-justify-center"
  735. />
  736. <strong>
  737. List group
  738. </strong>
  739. <small>
  740. custom content
  741. </small>
  742. </ccardheader-stub>
  743. <ccardbody-stub>
  744. <clistgroup-stub
  745. tag="ul"
  746. >
  747. <clistgroupitem-stub
  748. active="true"
  749. activeclass="router-link-active"
  750. class="flex-column align-items-start"
  751. event="click"
  752. exactactiveclass="router-link-exact-active"
  753. href="#"
  754. routertag="a"
  755. tag="li"
  756. target="_self"
  757. >
  758. <div
  759. class="d-flex w-100 justify-content-between"
  760. >
  761. <h5
  762. class="mb-1"
  763. >
  764. List group item heading
  765. </h5>
  766. <small>
  767. 3 days ago
  768. </small>
  769. </div>
  770. <p
  771. class="mb-1"
  772. >
  773. Donec id elit non mi porta gravida at eget metus. Maecenas
  774. sed diam eget risus varius blandit.
  775. </p>
  776. <small>
  777. Donec id elit non mi porta.
  778. </small>
  779. </clistgroupitem-stub>
  780. <clistgroupitem-stub
  781. activeclass="router-link-active"
  782. class="flex-column align-items-start"
  783. event="click"
  784. exactactiveclass="router-link-exact-active"
  785. href="#"
  786. routertag="a"
  787. tag="li"
  788. target="_self"
  789. >
  790. <div
  791. class="d-flex w-100 justify-content-between"
  792. >
  793. <h5
  794. class="mb-1"
  795. >
  796. List group item heading
  797. </h5>
  798. <small
  799. class="text-muted"
  800. >
  801. 3 days ago
  802. </small>
  803. </div>
  804. <p
  805. class="mb-1"
  806. >
  807. Donec id elit non mi porta gravida at eget metus. Maecenas
  808. sed diam eget risus varius blandit.
  809. </p>
  810. <small
  811. class="text-muted"
  812. >
  813. Donec id elit non mi porta.
  814. </small>
  815. </clistgroupitem-stub>
  816. <clistgroupitem-stub
  817. activeclass="router-link-active"
  818. class="flex-column align-items-start"
  819. disabled="true"
  820. event="click"
  821. exactactiveclass="router-link-exact-active"
  822. href="#"
  823. routertag="a"
  824. tag="li"
  825. target="_self"
  826. >
  827. <div
  828. class="d-flex w-100 justify-content-between"
  829. >
  830. <h5
  831. class="mb-1"
  832. >
  833. Disabled List group item
  834. </h5>
  835. <small
  836. class="text-muted"
  837. >
  838. 3 days ago
  839. </small>
  840. </div>
  841. <p
  842. class="mb-1"
  843. >
  844. Donec id elit non mi porta gravida at eget metus. Maecenas
  845. sed diam eget risus varius blandit.
  846. </p>
  847. <small
  848. class="text-muted"
  849. >
  850. Donec id elit non mi porta.
  851. </small>
  852. </clistgroupitem-stub>
  853. </clistgroup-stub>
  854. </ccardbody-stub>
  855. </ccard-stub>
  856. </ccol-stub>
  857. </crow-stub>
  858. </div>
  859. `;